Create ISO image from CD/DVD with Mac OS X
Some quick instructions on how to create an ISO image from a CD or DVD using Mac OS X. But sadly this has failed in creating iso images of some disks, such as Microsoft installer disks.
- Insert source CD/DVD
-
Open a Terminal, to determine the CD/DVD drive drive, using the following command: $ drutil status Vendor Product Rev OPTIARC DVD RW AD-5960S 2AP5
Type: CD-ROM Name: /dev/disk1 Sessions: 1 Tracks: 1 Overwritable: 00:00:00 blocks: 0 / 0.00MB / 0.00MiB Space Free: 00:00:00 blocks: 0 / 0.00MB / 0.00MiB Space Used: 65:11:67 blocks: 293392 / 600.87MB / 573.03MiB Writability:
- Unmount the disk with the following command: $ diskutil unmountDisk /dev/disk1 Disk /dev/disk1 unmounted
- Create the ISO file with the dd utility (may take some time): $ dd if=/dev/disk1 of=file.iso bs=2048
- Test the ISO image by mounting the new file (or open with Finder): $ hdid file.iso
- The ISO image can then be burnt to a blank CD/DVD.