boot:master_boot_record_mbr
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
boot:master_boot_record_mbr [2016/11/20 23:59] – peter | boot:master_boot_record_mbr [2019/11/25 22:46] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Boot - Master Boot Record (MBR) ====== | ||
- | |||
- | The Master Boot Record (MBR) resides in the first 512 bytes of the hard disk. This 512 byte contains two things in MBR partitioning scheme. | ||
- | |||
- | - 440 bytes for boot loader (Grub, or windows boot loader) | ||
- | - The remaining space is used for the partition table, i.e.: there can only be 4 primary partition in an MBR partitioning scheme. | ||
- | |||
- | This can be done by two methods | ||
- | |||
- | * **CHS method**: In this method a partition is located through cylinder, head, sector. This is described by a 24 bit number, and in this case it can only mention disk to a maximum of 8GB. | ||
- | * **LBA method**: LBA stands for Logical Block Addressing, where each and every sector is numbered serially resulting in easy addressing of spaces upto 2TB. | ||
- | |||
- | |||
- | Demerits of MBR partitioning scheme: | ||
- | |||
- | * It only allows four primary partitions. | ||
- | * The workaround for creating more than four partition by making one of them extended (containing logical partitions inside that) also leads to problems sometimes as some operating systems can only boot from Primary partitions. | ||
- | * The CHS implementation in MBR partition table can lead to problems because the Cylinder, Head, Sector geometry of the disk can change. | ||
- | * The LBA scheme implemented puts a 2TB limitation. | ||
- | * Logical partitions are stored in Linked List data structure over the extended partition, and can easily fail, which internally can make some logical partitions inaccessible. | ||
- | |||
- | |||
boot/master_boot_record_mbr.1479686399.txt.gz · Last modified: 2020/07/15 09:30 (external edit)