How to mount a dmg file in Windows?

12

4

I need to mount a .dmg file on windows 7. These are the disk image container files as are commonly used with Apple's OSX.

What applications/utilities will do this? I know Daemon tools won't.

Sam

Posted 2011-08-10T00:10:45.967

Reputation: 123

XP answer here, may work for windows7....http://filext.com/info/showthread.php?t=160&page=4

– Moab – 2011-08-10T00:19:27.847

Answers

12

Convert the dmg file to an ISO format, then mount the iso with the same software that converted it.

Magic Iso

Or convert it to iso on a MAC PC

dmg to iso

hdiutil convert /path/imagefile.dmg -format UDTO -o /path/convertedimage.iso

iso to dmg

hdiutil convert /path/imagefile.iso -format UDRW -o /path/convertedimage.dmg

MAC source

Moab

Posted 2011-08-10T00:10:45.967

Reputation: 54 203

ended up using power iso which worked for me. – Sam – 2011-08-10T01:30:25.447

Yes, that is handy software. Now get digging in all those files! – Moab – 2011-08-10T01:37:07.563

7

According to the Wikipedia page on DMGs:

In Windows, most dmg images can be opened using several other programs such as Acute Systems TransMac, HFSExplorer, 7-Zip, UltraISO or IsoBuster. MacDrive[9] can also mount simple dmg files as drives under windows, but not sparse disk or encrypted dmgs.

I suggest you try 7-Zip as you can use it for free and it's pretty solid software.

For any Linux users wondering about this, the same Wikipedia page states:

In Linux and possibly other Unix flavors, most .dmg files can be burned to CD/DVD using the program cdrecord or directly mounted to a mountpoint (e.g. mount -o loop,ro -t hfsplus imagefile.dmg /mnt/mountpoint).

PowerISO is a proprietary, cross platform, Freeware CLI tool that runs on Linux; it can convert most proprietary image formats to ISO, and newer versions support .dmg.

James T Snell

Posted 2011-08-10T00:10:45.967

Reputation: 5 726

7zip will let you extract a dmg, but that's not the same as mounting. For instance if you wanted to perform data recovery on a disk image, then the dmg drive image must be mounted as a drive (if the software doesn't read dmg natively of course) – Bastion – 2019-07-29T23:03:21.860

1

HFSExplorer is the only prg I know of that will open a password protected MAC DMG on WindowsXP (or in Win7 with Windows XP Mode installed - doesn't work under straight Win7).

David Dornbusch

Posted 2011-08-10T00:10:45.967

Reputation: 11

Can this mount a dmg as a drive? Looks like it might be able to..? – Bastion – 2019-07-29T23:05:31.177

1

To mount/manipulate the DMG without conversion, you could use HFSExplorer. It comes as freeware, and has a decent set of options and features. Since your working on Windows 7, 7-Zip is the only other option I see for your situation. Either way, however, it appears as though you would have to perform some form of conversion since you're using Windows to access the dmg disk image archive. Then, you could use a preferred program of your choice to mount the new, workable disk image. I would also suggest avoiding TransMac unless you're willing to invest in a paid option. The closest I've come to doing what you're asking about involved the use of a third-party fs driver from Paragon solutions, but it only appears to work with universal disk images like the ISO.

https://www.paragon-software.com/home/hfs-windows-free/

With that said, I am sorry to say that some form of conversion may be required to get the image mounted successfully.

user446730

Posted 2011-08-10T00:10:45.967

Reputation:

0

Altap Salamander, IMHO the best file manager, also can dive into .dmg files and extract files.

Mike L.

Posted 2011-08-10T00:10:45.967

Reputation: 4 539

1extracting files may not be his ultimate goal, he did say he wanted to mount the disk image. Still, nice to have another option on the table. – James T Snell – 2013-01-24T20:03:05.990

0

What I do to mount DMG:

  • Convert DMG to ISO format using AnyToISO app (comes as free Lite version, Pro version also available)
  • The resulting ISO (HFS+ formatted) can be easily mounted to Vmware/VirtualBox machine if it's running OS X. You can also burn this image under Windows.

Alternatively you can simply extract DMG with this tool. Works on Mac and Windows

Thomas

Posted 2011-08-10T00:10:45.967

Reputation: 106