up vote 1 down vote favorite
1
share [g+] share [fb]

I have a compressed dmg file in Ubuntu. I would like open this file and add 2 files to this system and create the compressed dmg file.

I open to doing the same in Windows if its not possible on Linux.

dmg2img will convert this file to an img file. But I do not know of any utility that converts it back to dmg file.

link|improve this question
feedback

1 Answer

You can mount it with the command line directly in Linux:

mount -t hfs -o loop imagename.dmg /mnt/mymountpoint

There is also dmgextractor and 7-zip which will allow you to extract them. I know TransMac will allow creation of dmg images on Windows, but it costs a bit. On Linux you can build Apple's diskdev_cmds package and use this handy script to make dmg images.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.