Functions when a computer is turned on.
1st computer runs a power on self-test and if successful will look for storage devices with installed OS to boot from following the boot order.
Boot Order
Boot Order, also known as the boot sequence, is the order in which a computer’s hardware components are initialized during the boot process.
Where is boot order configured?
In the system setup.
What is a likely reason for a computer to fail to boot?
Boot order changed to a non-bootable device. USB drives, Optical Drives, and SSD are all valid boot devices.
Patitioning
The act of separating portions of the storage media to desired functions such as storing the OS, acting as a swap file/swap partition, acting as a recovery partition, etc.
Swap File / Swap Partition
Allows part of the storage media to act as virtual memory in the event the RAM on a system overflows. OS will move infrequently used data to the swap partition freeing physical RAM up for active data
Recovery Partition
Will restore PC to factory settings in the event of system issues or failures
MBR Partititoning
A older form of partitioning a storage device. Master Boot Record (MRB) tells computer where to find the OS.
LBA (0)
Computer will start reading storage at this location assuming the media is first in boot order. MBR is stored here.
Boot loader
First bit of code read off of mass storage. Points to the begging of an OS partition. Points to active partition which has to be assigned.
MBR Partitioning Limitations
Max 2TB per partition. Limited to 4 partitions.
Primary Partitions (MBR)
A primary partition is a partition on a hard drive that can contain only one logical drive (or section)
Logical Drives (MBR)
These are subdivisions within an extended partition. Unlike primary partitions, logical partitions cannot be used to boot an operating system directly. They are mainly used for organizing data.
Extended Partitions (MBR)
An extended partition is a special type of primary partition that acts as a container for logical partitions. It does not hold data directly but instead holds multiple logical partitions.
GPT Partitioning
GUID partition table (GPT) - How modern mass storage makes partitions.
GUID
A GUID (Globally Unique Identifier), also known as a UUID (Universally Unique Identifier), is a 128-bit integer used to uniquely identify mass storage devices.
GPT Partitioning Limitations
Up to 128 Partitions on a drive. 18.8 million terabytes per partition
LBA 0 (GPT Partitioning)
Contains either a protective MBR or the GPT header, which is crucial for the proper functioning of the disk.
GPT header
The GPT header is responsible for identifying the disk and its partitions
protective MBR
The protective MBR serves as a safeguard against potential data loss due to outdated software that only recognizes MBR partitions
LBA 1 (GPT Partitioning)
GPT Header location. Crucial for defining the usable blocks on the disk and the number and size of the partition entries. It contains the disk GUID, records its own size and location, and the size and location of the secondary GPT header and table.
LBA 2
Secondary GPT header. copy of LBA 1 in case LBA 1 Fails
Can you convert a MBR drive to a GPT drive and why would you want to?
Yes you can convert an MBR drive to GPT, in windows we use disk management. The days of MBR are over and if you are running a system on windows 10 and beyond you must use GPT. MBR will only be found in systems running older OS.
Formating
Converting a storage device’s file format from on to another