Linux Flashcards
1
Q
Describe the steps of thge boot process in order
A
- The boot process begins with the Power-On Self-Test (POST), where hardware integrity is checked. The BIOS then loads, identifying and initializing system components.
- Next, the Master Boot Record (MBR) or GUID Partition Table (GPT) on the bootable device is located by the BIOS, which contains the bootloader.
- The bootloader (GRUB) executes and identifies the location of the operating system kernel. It loads the kernel into memory and hands over control to it.
- The kernel initializes itself and its subsystems, setting up memory management and other services.
- Next, the init process starts, being the first user-space process. Init runs scripts to set up everything else, like mounting filesystems and starting services.
- Finally, a login prompt or graphical user interface appears, marking the end of the boot process.