One of the simplest methods is to run the program dd
from the command line from a computer running a Linux operating system. Check out documentation for dd
here.
- Note : This method will need little modification to run on a Mac. If you are using a Windows operating system, Cygwin provides a "Unix-like" environment and a large collection of open-source command line tools useful for this process.
mount|grep ^'/dev'
one of the lines of output will look like something like this:
/dev/sr# on /media/username/VERY_LIKELY_A_CD-ROM_NAME type iso9660
The specifics will vary, but you get the idea. The important part is that you'll look at the list of output, and you'll recognize that one of the /dev s is your optical drive.
The value for "sr#" in that line of output is your optical media drive. Plug that value into the dd
command in step 2.
umount /dev/sr#
dd if=/dev/sr# of= pathto/filenameforCD-ROMimage.iso
you will see an output like this:
998000+0 records in
998000+0 records out
633044992 bytes (633 MB) copied, 255,874 s, 2,5 MB/s
and your .iso file is ready to go wherever you saved it.
dd is not a perfect solution. There are problems, for example you'll run into difficulty if the media is damaged, and dd does not do error-checking, and the above recommended method has not specified block size. There is much to debate about the merits of various approaches to producing disk images.
In the meantime, here are some particularly valuable resources for simple and practical tools to try, as well as in-depth explanations and concise-but-detailed descriptions of a range of approaches.
1. The Guymager program is an open-source forensic imaging program, focused on ease-of-use and speed. Guymager is included as part of the Bitcurator digital forensics suite.
-
Bitcurator provides this excellent and clear tutorial for creating disk images via Guymager: "Creating a disk image using Guymager"
-
The Bitcurator wiki and project is an excellent resource to check out for many data curation questions and tools, and they are very responsive and helpful with questions.
2. Here is an excellent and very through discussion of creating images for optical media, provided by the Koninklijke Bibliotheek, the National Library of the Netherlands:
-
(Thank you Koninklijke Bibliotheek for sharing your research, compiling this excellent resource, and sharing it with the digital preservation community, and thank you to NDS Resident Dinah Handel @DinahHandelfor alerting me to this page!)