Ano-Tech Computers
Enter keyword:

Linux: How to make an .iso image of a CD-ROM
Problem:
What program do I use to make an .iso image of a CD-ROM?
 
Solution:
The quick and dirty way is to simply copy the device file using dd:
"dd if=/dev/cdrom of=filename.iso"

If you need more features, like error recovery, use mkisofs:
"mkisofs -r -o filename.iso /dev/cdrom"

The image file can then be burned to a CDR using "cdrecord" or mounted as a loopback device.
 
Discuss this solution
Did this article solve your problem? Yes No Did not apply

We welcome anyone who is willing to contribute to this public knowledge base, contact siteadmin@atc.no if you have information you would like to share. The idea is not to replace the commercial support sites, but to publish those hard-to-find solutions you've found yourself looking for over and over again.

Show all articles