docs(iso): Master Boot Record capitalized (#5)

This commit is contained in:
hygienic-books 2023-10-27 02:15:46 +02:00
parent 0b3f5b75dd
commit 9f0f19355e

View File

@ -60,12 +60,12 @@ NAME SIZE FSTYPE PARTTYPE PARTTYPENAME PTTYP
### Legacy BIOS
For a legacy BIOS machine you'll be using a master boot record (MBR) on your disk.
For a legacy BIOS machine you'll be using a Master Boot Record (MBR) on your disk.
```
printf -- '%s\n' 'label: dos' 'start=1MiB, size=512MiB, type=83, bootable' 'start=513MiB, size=+, type=bf' | sfdisk /dev/sda
mkfs.vfat /dev/sda1
```
> `label: dos`: Create the following partition layout in a master boot record.
> `label: dos`: Create the following partition layout in a Master Boot Record.
>
> `start=1MiB, size=512MiB, type=83, bootable`: Partition 1 begins 1 Mebibyte after disk start and is 512 Mebibyte in size. We're setting its bootable flag and setting partition type code `83` ("Linux").
>