Chapter 3_Linux Basics and System Start Flashcards
What is the Linux Boot Process?
The Procedure for Initializing the System.
What does the Boot Process Consist of?
Everything that happens from when the computer power is first switched on until it is fully operational.
What are the steps of the boot process?
Power On
Boot
Master Boot (MBR) - First sector of the Hard Disk
Boot Loader (GRUB)
Kernel (Linux OS)
Initial Ram Disk (Initramfs Image)
/sbin/init (parent process)
Comand Shelf using Getty
X Window System (Graphical User Interface)
What is the First Step of the Boot Process?
BIOS (Basic Input/Output System) intializes the Hardware and tests the main hardware - called POST
What are some hardware that turns on during the BIOS Stage?
Keyboard, screen
What does POST mean?
Power on Self Test
Where is the BIOS system stored?
On a Rom Chip on the Motherboard
What Happens after the initial BIOS system starts?
The OS takes over
What happens when the POST is completed?
the system control passes from the bios to the boot loader
Where is the Boot Loader Stored?
on one of the hard disks in the system, either in the Boot Sector or the EFI partition
What systems is the Boot Loader stored on the Boot Sector?
Traditiona BIOS/MBR systems
What systems on the EFI partition?
EFI/UEFI systems
What does EFI stand for?
Extensible Firmware Interface
What are common Boot Loaders for Linux?
GRUB (Grand Unified Boot Loader)
ISOLINUX (Boots removable media)
DAS U-Boot (boots embedded devices)
What is the boot loader responsible for?
Loading the Kernel Image and
the initial RAM disk or FILESYSTEM into memory
How many stages does the Boot Loader have?
2
What is the First stage for a BIOS/MBR system?
the boot loader resides at the first sector of the hard disk - also known as the MASTER BOOT RECORD (MBR)
What does MBR stand for?
Master Boot Loader
What is the size of the MBR
512 Bytes
What does the Boot Loader Examine?
The Partition Table and finds a bootable partition
What happens when it finds a bootable partition?
it searches for the secondary loader (GRUB) and loads it into Ram
What does GRUB stand for?
GRand Unified Bootloader
What is the Second Stage?
Residing under /boot a splash screen is displayed asking us to choose an OS to boot
What happens after the BootLoader chooses the OS?
loads the Kernel of the OS into RAM and passes control to the Kernel.