How do you burn an ISO image on a Mac?

3

1

Is there a utility built into the Mac software to allow for burning ISO downloaded from the internet.

Or.. Is there a better utility on the Net for performing this function?

Keith Sirmons

Posted 2009-07-15T21:56:04.220

Reputation: 197

For what it's worth, I found out the hard way that right-clicking the .iso file and selecting Burn "foo.iso" to Disc... does NOT do this ;-) – mpontillo – 2011-06-26T07:43:58.683

Answers

9

The steps below show how to use the Disk Utility functionality. (Copied from Life Hacker).

  1. Launch Disk Utility (Applications > Utilities).
  2. Insert your blank DVD or CD.
  3. Drag and drop your .dmg or .iso file to the left pane in Disk Utility. Now both the blank disk and the .iso/.dmg should be listed.
  4. Select the .iso/.dmg file you want to burn to disc, and click on the Burn button. A dialog box confirming the destination (your blank CD/DVD) will appear, as shown:
  5. Sit back and wait while your new disc gets written!

Alternatively you could use a third party application like Burn

Mark

Posted 2009-07-15T21:56:04.220

Reputation: 2 075

1I find Burn much easier to use. – moshen – 2009-07-15T21:59:43.667

I <3 Burn – bgw – 2009-07-15T22:09:21.427

I would also recommend Burn as a reliable CD\DVD burning application. – Insomnic – 2009-09-02T19:18:06.037

7

It's very, very easy to do on the command line (open Terminal):

hdiutil burn /path/to/iso

If it's a CD/RW and you want to erase it first:

hdiutil burn -erase /path/to/iso

It's funny, but this is pretty much the best CLI for CD burning on any OS.

Harley

Posted 2009-07-15T21:56:04.220

Reputation: 417

0

You can use the "Disk Utility" program that comes with the OS.

  • insert blank disc
  • start the "Disk utility" program
  • select File -> Open Disc Image -> select your ISO image to be burned
  • Choose your .iso file from the volume list
  • Burn it!!!

John T

Posted 2009-07-15T21:56:04.220

Reputation: 149 037

0

Click on the Finder icon in your dock, then on the sidebar, click on applications. Find the folder that says "Utilities" and double click on it. Find the application that says "Disk Utility" and on the Menu Bar, go to "Images" -> "Burn" and select the image you want to burn.

Harley Watson

Posted 2009-07-15T21:56:04.220

Reputation: 426