首页 > 代码库 > Master Boot Record

Master Boot Record

https://en.wikipedia.org/wiki/Master_boot_record

https://zh.wikipedia.org/wiki/主引导记录

A master boot record (MBR) is a special type of boot sector at the very beginning of partitioned computer mass storage devices like fixed disks or removable drives intended for use with IBM PC-compatible systems and beyond. The concept of MBRs was publicly introduced in 1983 with PC DOS 2.0.

The MBR holds the information on how the logical partitions, containing file systems, are organized on that medium. The MBR also contains executable code to function as a loader for the installed operating system—usually by passing control over to the loader‘s second stage, or in conjunction with each partition‘s volume boot record (VBR). This MBR code is usually referred to as a boot loader.[1]

 

主引导记录Master Boot Record,缩写:MBR),又叫做主引导扇区,是计算机开机后访问硬盘时所必须要读取的首个扇区,它在硬盘上的三维地址为(柱面,磁头,扇区)=(0,0,1)。在深入讨论主引导扇区内部结构的时候,有时也将其开头的446字节内容特指为“主引导记录”(MBR),其后是4个16字节的“磁盘分区表”(DPT),以及2字节的结束标志(55AA)。因此,在使用“主引导记录”(MBR)这个术语的时候,需要根据具体情况判断其到底是指整个主引导扇区,还是主引导扇区的前446字节。

标准MBR结构
地址描述长度 (字节)
HexOctDec
000000000代码区440 (最大446)
01B80670440选用磁盘标志4
01BC0674444一般为空值; 0x00002
01BE0676446标准MBR分区表规划 (四个16 byte的主分区表入口)64
01FE077651055hMBR有效标志: 0x55AA2
01FF0777511AAh
MBR,总大小:446 + 64 + 2 =512

主引导扇区记录着硬盘本身的相关信息以及硬盘各个分区的大小及位置信息,是数据信息的重要入口。如果它受到破坏,硬盘上的基本数据结构信息将会丢失,需要用繁琐的方式试探性的重建数据结构信息后才可能重新访问原先的数据。主引导扇区内的信息可以通过任何一种基于某种操作系统的分区工具软件写入,但和某种操作系统没有特定的关系,即只要创建了有效的主引导记录就可以引导任意一种操作系统(操作系统是创建在高级格式化的硬盘分区之上,是和一定的文件系统相联系的)。

Master Boot Record