OneGeekArmy / Disk-Jockey-Community

21 stars 0 forks source link

Can the .HDA or .IMG image be directly mounted by OSX? #16

Closed AiGeekNet closed 11 months ago

AiGeekNet commented 1 year ago

I noticed that the hard disk image in RAW DD format can be directly mounted by OSX, which is very convenient for file exchange.

But the hard disk image in .HDA and .IMG format created by disk-jockey cannot be mounted. Can this problem be solved?

OneGeekArmy commented 1 year ago

That's because they are different things.

Images created with dd are volume images, containing a single partition that can be mounted by macOS. The images for BlueSCSI and PiSCSI that Disk Jockey creates are device images. People use "Disk Image" to talk about both kinds but they are different and should be distinguished better in my opinion.

I get into the details here: Some Technical Information

But the short version is this:

Finally, the reason why macOS can't mount a volume image (img) created by Disk Jockey is that DJ creates unformatted volume images. This is because these volume images are meant to be formatted by whatever device or emulator you use it with. Once they are formatted, macOS can mount them just fine if it's a type of volume it knows, of course.

Hope this helps!