Understanding the Linux startup process
Step 2: Loading the MBR
After the first boot-up checks have been completed, the BIOS will find the primary disk among the available disks and scan the first 512 bytes. Normally, the boot device is found in the Master Boot Record (MBR). The MBR (Figure 2) is a 512-byte area that contains 446 bytes of bootloader code, a 64-byte partition table, and the final two bytes for the boot signature. Initially, the BIOS is not aware of filesystems. As a result, the MBR is stored in a specific location on the disk, which is the first sector of the boot disk. Note that there is an MBR partition on every hard disk.
Step 3: The Bootloader Phase
After loading the MBR, the system executes the 446 bytes of the primary bootloader. This code is stored at the start of the MBR. The boot sector of the boot disk is located at this location. The bootloader code or the bootstrap code is usually called the Stage 1 bootloader. This code is too small to do any major function like calling a kernel. However, it can simplify things by locating and loading another set of blocks from the partition that contains all the code needed for loading the kernel. This code is actually the Stage 2 bootloader.
The most common Stage 2 bootloader for Linux systems is GNU GRand Unified Bootloader (GRUB). However, there are a number of other options that are not dependent on a certain OS. The main purpose of the Stage 2 bootloader program is to locate the Linux kernel code (a disk image), which is usually inside the /boot
filesystem [3], decompress it, read it into memory as per the GRUB configuration file, and transfer control of the system over to the kernel to move on the boot process.
Step 4: The Kernel Phase
Once the kernel starts running, it initializes the system's hardware to determine what devices are present. Also, it initializes the system's device drivers, which allow it to communicate with the hardware. Further, it sets up the system's memory management, and then it mounts the root filesystem, which contains the root directory of the system. Finally, it starts the init process from /sbin/init
, which is the systemd process. Systemd is a replacement for the old SysVinit process and is the first userspace process to run on the system with the PID of 1.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
-
Plasma Desktop Will Soon Ask for Donations
The next iteration of Plasma has reached the soft feature freeze for the 6.2 version and includes a feature that could be divisive.
-
Linux Market Share Hits New High
For the first time, the Linux market share has reached a new high for desktops, and the trend looks like it will continue.
-
LibreOffice 24.8 Delivers New Features
LibreOffice is often considered the de facto standard office suite for the Linux operating system.
-
Deepin 23 Offers Wayland Support and New AI Tool
Deepin has been considered one of the most beautiful desktop operating systems for a long time and the arrival of version 23 has bolstered that reputation.
-
CachyOS Adds Support for System76's COSMIC Desktop
The August 2024 release of CachyOS includes support for the COSMIC desktop as well as some important bits for video.
-
Linux Foundation Adopts OMI to Foster Ethical LLMs
The Open Model Initiative hopes to create community LLMs that rival proprietary models but avoid restrictive licensing that limits usage.
-
Ubuntu 24.10 to Include the Latest Linux Kernel
Ubuntu users have grown accustomed to their favorite distribution shipping with a kernel that's not quite as up-to-date as other distros but that changes with 24.10.
-
Plasma Desktop 6.1.4 Release Includes Improvements and Bug Fixes
The latest release from the KDE team improves the KWin window and composite managers and plenty of fixes.
-
Manjaro Team Tests Immutable Version of its Arch-Based Distribution
If you're a fan of immutable operating systems, you'll be thrilled to know that the Manjaro team is working on an immutable spin that is now available for testing.