OS X Leopard Terminal IconIn OS X it is fairly simple to create a virtual disk image of the type “ISO” by using built-in UNIX tools and the Terminal.app. Unfortunately the Disk Utility.app doesn’t allow the creation of ISO images for all disks (it may work sometime).

Here’s what you need to do in order to create an ISO disk image from a CD or DVD on your Mac:

  1. Insert the CD/DVD into your Mac’s drive
  2. Make sure the CD/DVD items are “Unmounted” using Disk Utility.app
    (else you will later get an error saying “dd: /dev/diskXX: Resource busy“)
    OSX Disk Utility unmount drives
  3. Launch Terminal.app from the Utilities folder (Command+Shift+U in Finder)
  4. Use the following command in order to identify the drive path and identifier of the CD/DVD:
    $ diskutil list
  5. You should see the CD/DVD under an entry named “/dev/disk11” or something similar
    OSX Terminal diskutil list drives
  6. Now it’s time creating the ISO: use the following “dd” command to copy the CD/DVD into a virtual ISO image – adjust it with the correct volume & destination path to match your system:
    $ dd if=/dev/disk11 of=~/Desktop/MyNewISOdisk.iso

    • if =  Input File
    • of = Output File

  7. Wait until “dd” is done creating your ISO file – it will push some information to the Terminal window as soon as it has finished (it will list “records in“,  “records out” & “bytes transferred“).

 Sources:

Share:
  • 1
  • 0

1 thought on “OS X: create an ISO disk image”

  1. That’s cool if you like Terminal, but Disk Utility can do this, too. When creating the image, simply select “DVD/CD master” as the format and when it’s done, rename the file from “.cdr” to “.iso”.
    If you read your second source (Super User – Best way to make an ISO from a CD or DVD) closely, the top voted answer suggests just this.

Questions? Suggestions? Let us know with a comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.