Tips and tweaks for reducing Linux startup time
Ready Set Go
Today's Linux systems boot faster than ever, but many users still get impatient waiting for that first glimpse of desktop. These tweaks will help you get a faster start from the bootloader and kernel.
CPUs, RAM modules, and storage media keep getting faster, but today's Linux systems are still a little too slow at startup for many busy users. With a few useful tools and a little knowledge of the Linux environment, you can shave some seconds from the startup process. Read on for some insights.
systemd-analyze
The systemd-analyze
tool supplied with systemd gives a first impression of where time is being wasted. The time
option outputs the total startup time and shows what portion of that time is used for firmware, bootloader, kernel, and user space:
systemd-analyze time
Listing 1 shows the output, which will vary depending on you firmware, hardware, and software configuration.
Listing 1
Analyzing Start Time
$ systemd-analyze time Startup finished in 3.393s (firmware) + 10.554s (loader) + 2.123s (kernel) + 4.789s (userspace) = 20.860s graphical.target reached after 4.778s in userspace
Test Setup
The test system for this article was a four-year-old Tuxedo BU1406 with a "Kaby Lake" Intel i7-7500U CPU, 32GB DDR4 RAM, and a 512GB NVMe SSD; this machine cost around a thousand dollars when it was new. The operating system was a Debian "Bullseye" ("Testing") from November 19, 2020 with a 5.9.9 kernel and systemd 246.6 set up by the Debian installer. The standard system with Gnome 3.38.1, GDM 3.38.2, and an OpenSSH server provides the user interface. Our focus was primarily on systems with UEFI firmware, which is common now on most modern hardware.
Our goal was to minimize the startup time based on the readings for firmware, loader, and kernel in the systemd-analyze
output. Older systems with significantly longer default boot times typically offer far more potential to improve the boot speed.
Firmware
Users typically have few options to optimize the firmware, because it is often proprietary and only the device manufacturer can change and distribute it. In the default Debian configuration used on the test system, the UEFI firmware starts the GRUB bootloader. Other distributions might use the alternative systemd-boot
boot manager in place of GRUB.
UEFI firmware is now ubiquitous on x86 systems. The startup screen typically announces which key or key pattern you need to press to access firmware settings. In the graphical firmware menu, you can look for functions that slow down the system, like network boot, and turn them off if they are not needed. Some systems even offer option for a faster startup, like Quick Boot or Fast Boot.
Aside from the lack of source code – and thus, lack of freedom – the size of the UEFI firmware is also a major criticism. Alternatives include coreboot for x86 systems, as well as U-Boot and coreboot for ARM systems. Coreboot lets you initialize only enough hardware to boot the operating system. Coreboot firmware is used in Chromebooks and on devices by vendors such as System76 and Purism. The minimal approach results in firmware startup times of less than a second, or even as little as 500ms for some devices.
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
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.