Skip to content

Latest commit

 

History

History
40 lines (21 loc) · 1.27 KB

mbr.md

File metadata and controls

40 lines (21 loc) · 1.27 KB

MBR

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

https://wiki.archlinux.org/index.php/Master_Boot_Record

You can only have 4 primary partitions.

Each one can be either divided into logical any number of logical partitions partitions.

A primary partition that is split into logical partitions is called an extended partition.

Primary partitions get numbers from 1 to 4.

Logical partitions get numbers starting from 5.

You can visualize which partition is inside which disk with sudo lsblk -l.

TODO more common?

The MBR is the first 512 sector of the device found. It contains:

The MBR can only be at the start of a physical partition, not of a logical partition.

This is why on bootloader configurations you give /dev/sda, instead of /dev/sda1-4.