From d095e8b0eced0916dd42b0729bad66467a15d377 Mon Sep 17 00:00:00 2001 From: prashant Date: Tue, 9 Apr 2019 14:14:24 +0530 Subject: [PATCH] 2) MBR - missing link for reference (#29438) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "Why it’s sda and hda ? refer here for more." - does not point to any valid reference. Add a refer link or remove this line instead. --- .../linux/how-linux-system-boots-up-6-step-description/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/linux/how-linux-system-boots-up-6-step-description/index.md b/guide/english/linux/how-linux-system-boots-up-6-step-description/index.md index 9980563eba..4d51d443c3 100644 --- a/guide/english/linux/how-linux-system-boots-up-6-step-description/index.md +++ b/guide/english/linux/how-linux-system-boots-up-6-step-description/index.md @@ -27,7 +27,7 @@ Operating system is defined as the low-level software that supports a computer - MBR stands for Master Boot Record. -- It is located in the 1st sector of the bootable disk. Typically /dev/hda, or /dev/sda. Why it’s sda and hda ? refer here for more. +- It is located in the 1st sector of the bootable disk. Typically /dev/hda, or /dev/sda. - MBR is less than 512 bytes in size. This has three components 1) primary boot loader info in 1st 446 bytes 2) partition table info in next 64 bytes 3) mbr validation check in last 2 bytes. - It contains information about GRUB (or LILO in old systems). - So, in simple terms MBR loads and executes the GRUB boot loader.