The concept is you mount the partition inside the image you want and the following are steps.
1. find partition information
fdisk -l xxx.img2. mount the partition as block device and have to specify the start address in bytes
sudo losetup /dev/loop0 xxx.img -o $((Start Sectors*512))3. mount it
sudo mount -t ext3 /dev/loop0 /mount/point
mount -o loop /path/to/image won't work in this case since the start byte does not contain file system information in this image type
沒有留言:
張貼留言