Linux Boot Process

Linux Boot Process

Updated date: 2025-03-20


Boot process for Ubuntu

BIOS/UEFI Initialization

BIOS (Basic Input/Output System) or UEFI (Unified Extensible Firmware Interface) is the first software that runs when a computer is powered on.

It performs hardware initialization, such as testing the processor, memory (RAM), and other components (keyboard, disk drives, etc.), and ensures that they are working properly.

Once initialization is complete, the BIOS/UEFI looks for a bootable device (HDD, SSD, USB drive, CD/DVD, etc.).

You can see the BIOS settings as shown below

$ sudo apt install dmidecod
$ sudo dmidecode  | less
# dmidecode 3.3
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Table at 0x414DB000.

Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
        Vendor: Intel Corp.
        Version: TNTGL357.0064.2022.0217.1550
        Release Date: 02/17/2022
        Address: 0xF0000
        Runtime Size: 64 kB
        ROM Size: 0 MB
        Characteristics:
                PCI is supported
                BIOS is upgradeable
                BIOS shadowing is allowed
                Boot from CD is supported
                Selectable boot is supported
                BIOS ROM is socketed
                EDD is supported
...

BIOS

UEFI

Bootloader (GRUB or LILO)

GRUB for Ubuntu 22.04

$ uname -r
5.15.0-105-generic
$ cd /boot/grub/x86_64-efi
// https://help.ubuntu.com/community/Grub2
$ tree
.
├── fonts
│   └── unicode.pf2
├── grub.cfg
├── grubenv
├── locale
├── unicode.pf2
└── x86_64-efi
    ├── acpi.mod
    ├── adler32.mod
    ├── affs.mod
    ├── afs.mod
    ├── afsplitter.mod
    ├── ahci.mod
    ├── all_video.mod
    ├── aout.mod
...
    ├── gptsync.mod
    ├── grub.efi

Kernel Initialization

Initial RAM Disk (initrd or initramfs)

Systemd or Init Process

# sudo systemctl status
● ubuntu
    State: degraded
     Jobs: 0 queued
   Failed: 1 units
    Since: Sun 2024-04-21 14:30:55 UTC; 10 months 28 days ago
   CGroup: /
           ├─user.slice 
           │ └─user-1000.slice 
           │   ├─user@1000.service …
           │   │ ├─app.slice 
           │   │ │ └─dbus.service 
           │   │ │   └─13319 /usr/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
           │   │ └─init.scope 
           │   │   ├─1658 /lib/systemd/systemd --user
           │   │   └─1659 (sd-pam)
           │   ├─session-2.scope 
           │   │ ├─1020 /bin/login -p --
           │   │ ├─1665 -bash
           │   │ ├─1708 sudo su
           │   │ ├─1709 sudo su
           │   │ ├─1710 su
           │   │ ├─1711 bash
           │   │ ├─1720 wpa_supplicant -Bc /etc/wpa_supplicant/wpa_supplicant.conf -i wlo1
           │   │ └─1722 dhclient wlo1
           │   ├─session-7.scope 
           │   │ ├─   2174 tmux
           │   │ ├─ 501760 -bash
           │   │ ├─ 505659 -bash

Mounting Other Filesystems

For example,

$ sudo systemctl cat boot.mount
# /run/systemd/generator/boot.mount
# Automatically generated by systemd-fstab-generator

[Unit]
Documentation=man:fstab(5) man:systemd-fstab-generator(8)
SourcePath=/etc/fstab
Before=local-fs.target
Requires=systemd-fsck@dev-disk-by\x2duuid-e80245b5\x2dd541\x2d4fcc\x2d879d\x2d9e59a437ad8f.service
After=systemd-fsck@dev-disk-by\x2duuid-e80245b5\x2dd541\x2d4fcc\x2d879d\x2d9e59a437ad8f.service
After=blockdev@dev-disk-by\x2duuid-e80245b5\x2dd541\x2d4fcc\x2d879d\x2d9e59a437ad8f.target

[Mount]
Where=/boot
What=/dev/disk/by-uuid/e80245b5-d541-4fcc-879d-9e59a437ad8f
Type=ext4

Starting User Services