답변:
당신은 이것을 검사 할 수 있습니다 dd
및 file
위해 예 /dev/sda
:
root@rapunzel:~# 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
생각하는 것을 파일로 요청할 수 있습니다.
root@rapunzel:~# 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
/dev/sdb1: x86 boot sector
다른 것은 없다면? 내 경우에는 부팅되지 않습니다 ...
dd
필자의 경우 USB 드라이브에 이미지를 가져와야합니다 of=/dev/sdb
. 작동하지 않았습니다 /dev/sdb1
.
CesarB 가 자신의 의견을 답변으로 게시하지 않았기 때문에 :
jcomeau@aspire:~$ sudo file -s /dev/sdb
[sudo] password for jcomeau:
/dev/sdb: DOS floppy 1440k, DOS/MBR hard disk boot sector
이를 위해 TestDisk (무료, 오픈 소스 및 크로스 플랫폼)를 사용할 수 있습니다 . 원하는 드라이브를 검색하고 파티션 레이아웃을 분석 할 수 있습니다 (또는 지정할 수 있으며 선택한 레이아웃 스타일로 파티션을 검색하려고 시도 함). TestDisk는 디스크의 MBR을 선택한 디스크로 덮어 쓸 수도 있습니다.
dd
춤 대신에을 사용하십시오file -s /dev/sda
.