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