これは dd
で調べることができます と file
、例えば/dev/sda
の場合 :
[email protected]:~# dd if=/dev/sda of=/tmp/test count=1 bs=512
1+0 records in
1+0 records out
512 bytes (512 B) copied, 6.1994e-05 s, 8.3 MB/s
次に、/tmp/test
にブートセクタがあります。 file の考えを尋ねることができます:
[email protected]:~# file /tmp/test
/tmp/test: x86 boot sector; partition 1: ID=0x7, starthead 32, startsector 2048, 1850621692 sectors; partition 2: ID=0x17, starthead 254, startsector 2922062850, 8209215 sectors; partition 3: ID=0xfd, starthead 254, startsector 1850623740, 1071439110 sectors, code offset 0x63, OEM-ID " м", Bytes/sector 190, sectors/cluster 124, reserved sectors 191, FATs 6, root entries 185, sectors 64514 (volumes <=32 MB) , Media descriptor 0xf3, sectors/FAT 20644, heads 6, hidden sectors 309755, sectors 2147991229 (volumes > 32 MB) , physical drive 0x7e, dos < 4.0 BootSector (0x0)
hexdump -C
を使用して手動でファイルを検査することもできます
CesarB が回答としてコメントを投稿しなかったため:
[email protected]:~$ sudo file -s /dev/sdb
[sudo] password for jcomeau:
/dev/sdb: DOS floppy 1440k, DOS/MBR hard disk boot sector
これを行うには、TestDisk (無料、オープン ソース、クロス プラットフォーム) を使用できます。任意のドライブをスキャンし、パーティション レイアウトを分析できます (または、それを指定すると、選択したレイアウト スタイルでパーティションを検索しようとします)。 TestDisk は、選択したディスクで MBR を上書きすることもできます。