Mount img
file in Linux
Check 'disk' structure by
fdisk -l XXX.img
:Calculate the offset:
offset = SECTOR_SIZE * START_UNIT
The offset in the example:offset = 512 * 8192
and mount it with the parameters:sudo mount -t auto -o loop,offset=xxxxx XXX.img /tmp/MOUNT_POINT