Skip to content

Latest commit

 

History

History

imagingCDs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

There are many ways to create disk images.

Short version here (longer, more accurate version below):

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.
1. open a terminal window.
2. find the path to the cd drive.
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.

3. unmount the CD
umount /dev/sr#
4. run dd to generate an .iso file of the CD-ROM
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.


Longer, more accurate version:

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:
3. One of the sources cited by the KB optical media discussion is this analytic report about producing disc images and addressing errors, produced by George Blood Audio Video Film for the Library of Congress in April 2014: