linuxシステムでimgファイルの内容を確認する方法
1813 ワード
したがって、マウントディスク内のパーティションを直接mountで行うことができます.
$ fdisk noogie.img
Command (m for help): p
Disk noogie.img: 79 MB, 79691776 bytes
128 heads, 32 sectors/track, 38 cylinders, total 155648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
noogie.img1 * 32 155647 77808 c W95 FAT32 (LBA)
のstarは32であり、変換するには32 X 512=16384 Bであり、これは重要であり、以下のmountコマンドのパラメータoffsetでは```
sudo mount -o loop,offset=16384 noogie.img /mnt/
```