linuxシステムでimgファイルの内容を確認する方法

1813 ワード

  • は、imgのファイルをディスクとして理解し、ファイルのバイナリ形式で存在するディスクとして理解することができる.
  • ディスクには必ずいくつかのパーティションがあります.

  • したがって、マウントディスク内のパーティションを直接mountで行うことができます.
  • 第一に、imgディスクファイル、対応するパーティションの開始位置を知る必要があります.パーティションプログラムでimgがubuntu linuxシステムなどのパーティション情報に対するfdisk、またはparted fdiskに対して直接次のように見えることを確認し、p印刷imgファイルのパーティション情報
    $ 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では
  • を用いる
  • 第2、マウントパーティション
    ```
     sudo mount -o loop,offset=16384 noogie.img /mnt/
    ```