我尝试从我的树莓派中提取 MBR(在 SDCARD 上加载了 raspbian),就像在任何 Linux 机器上一样。
dd if=/dev/<devname> of=mbr.bin bs=512 count=1
但是,在执行file
on时,mbr.bin
我收到以下消息:-
mbr.bin: x86 boot sector; partition 1: ID=0xc, starthead 130, startsector 8192, 114688 sectors; partition 2: ID=0x83, starthead 0, startsector 122880, 15400960 sectors, code offset 0xb8
为什么说它是一个x86 boot sector
?
[编辑] 我还在这里阅读了有关启动顺序的信息;树莓派甚至使用 MBR 吗?