PDA

View Full Version : [SOLVED] DMG files



smss
January 26th, 2011, 03:08 PM
Hi.
How to open .dmg files?

Grenage
January 26th, 2011, 03:10 PM
Hi.
How to open .dmg files?

http://baghira.sourceforge.net/dmg.htm

smss
January 26th, 2011, 07:35 PM
Ok.
But I did not understanded it!

Grenage
January 26th, 2011, 09:23 PM
First you might need to make a mount point:


sudo mkdir /media/dmg

Then mount it; you'll need to replace the paths with whatever you have:


sudo mount -t hfs -o loop /home/smss/myImage.dmg /media/dmg

I've never done this before, but I imagine that would work.

smss
January 27th, 2011, 01:05 PM
First you might need to make a mount point:


sudo mkdir /media/dmgThen mount it; you'll need to replace the paths with whatever you have:


sudo mount -t hfs -o loop /home/smss/myImage.dmg /media/dmgI've never done this before, but I imagine that would work.

Thank you very much.