Mount Hfsplus partition of a disk image

Solution 1:

I wanted to do the same and got the same issue with the method you used.

Here's another approach which I used successfully:

sudo losetup --find --show ./MacImage.img
/dev/loop9
sudo partprobe /dev/loop9
sudo mount /dev/loop9p2 /mnt/Mac-part-2

Hope this helps.