4

Is there any way in Mac OS X 10.5.x to create a .dmg image from existing physical DVD, without a third-party tools installation? I have carefully examined "disk utility" and searched Google, but it seems that all people just write .dmg files, no information on how to create them from physical DVD disks.

splattne
  • 28,348
  • 19
  • 97
  • 147
grigoryvp
  • 3,415
  • 11
  • 38
  • 58

4 Answers4

13
  1. Launch Disk Utility
  2. Select the icon for the CD/DVD you want to image
  3. Click the "New Image" button
  4. Choose "DVD/CD Master" as the image format, this creates a CDR image (an ISO basically) which is the only block-level image format available in the Disk Utility GUI (and also the only format you can easily mount in Windows should you want to)
  5. Save
username
  • 4,725
  • 18
  • 54
  • 78
3

Have you tried dd?

You can create an iso of the DVD in the following manner.

*Open a new terminal*
mount <look for the entry that says /dev/sdX DVD/CD ROM>
dd if=/dev/sdX of=dvdimage.iso

This should be what you want.

Joseph Kern
  • 9,809
  • 3
  • 31
  • 55
0

Disk utility is able to do that. Just select the disk you want an image from in the sidebar in Disk Utility and then click the "new image button" in the top icon bar.

Added note: Of course this doesn't work with CSS encoded video dvd's :)

Sven
  • 97,248
  • 13
  • 177
  • 225
  • It's always worked for me with a CSS encoded DVD - as it reads the data on the DVD and doesn't care about the video encryption. You still needed to have somethin DeCSS the video however. – Chealion Jun 21 '09 at 21:34
0

Alternatively, open up Disk Utility - click on the DVD and then choose File -> Create New Disk Image from disk#s# (NAME_OF_DVD_HERE).

You can then save it somewhere (compressed or CD/DVD master) and you're good to go. (This does work with CSS'd DVDs)

Chealion
  • 5,713
  • 27
  • 29