0

Is there a Linux equivalent of the Mac's

sudo hdiutil attach -imagekey -diskimage-class=CRawDiskImage  -nomount

I have an imagine I want to attach as a disk drive, but I don't want to mount it. The image is HFS+ formatted and I'm running Ubuntu.

1 Answer 1

2

Linux has losetup which you can use to attach a file to the system as a block device. E.g.

losetup /dev/loop0 macfoo.dmg

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .