Tody, I met some problems on mount apple hfs+ img file.
First, install the lib hfs+ supported,
sudo apt-get install hfsprogs
Then, create a mount point with /mnt/sdb
sudo mkdir /mnt/sdb
Next, use command mount to mount a img file.
sudo mount -t hfsplus -o force,rw ./some-file.img /mnt/sdb
But on this step, it arrise an error, mount: /mnt/sdb: wrong fs type, bad option, bad superblock on /dev/loop25, missing codepage or helper program, or other error.
What’s wrong with this, I do not clear, with some search on google, a netizen gave a solution
sudo mount /dev/loop25p1 /mnt/sdb
And it worked, but what different loop25 and loop25p1 ?