Sunday, May 11, 2014

Linux - Make ISO image of CD

If we want to make exact copy of cd media type, because Linux handles everything as file, we need to read all data from one file and write it to imagefile on disk.

$ cat /dev/cdrom >./imagefile.iso

another way is using dd command:

dd if=/dev/cdrom of=imagefile.iso

No comments:

Post a Comment