9

I am following these instructions for creating a cross-platform CD. I am coming across a problem in Mountain Lion where I cannot mount the image as read-write.

When I enter the following in Terminal:

hdiutil attach -readwrite ~/2013CD.iso

I get the following message:

hdiutil: attach failed - Function not implemented

Is there any way around this? I need to be able to mount the image as readwrite to make changes to it.

3 Answers3

7

ISO 9660 (CD images) are not designed for writing. The entire filesystem is designed for efficient read only access.

If you want to change part of an .iso you have three options:

  1. Copy all data. Change the copy. Generate a new iso file.
  2. If the iso is part of a multi-session CD, you can add new files and change the index. This will not change the old files, nor can you gain space by erasing files.
  3. Use an overlay filesystem. All writes go to the non-iso part, but show up as if they were in the iso. This is how many live CDs work.
Hennes
  • 65,804
  • 7
  • 115
  • 169
1

From https://wiki.afp548.com/index.php/Mount_DMG_Read_Write:

...attach the read-only image as with the shadow option:

    hdiutil attach -owners on your.dmg -shadow

After typing this command, the image will be attached as a new device to your operating system. Usually this is shown from the command line.

It's the -shadow option that enables this.

Gareth
  • 19,080
1

I had the same problem. The workaround is use a Mac running OS X 10.6.8.

Mountain Lion seems to block it for some reason.

slhck
  • 235,242