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
-
Red Hat Migrates RHEL from Xorg to Wayland
If you've been wondering when Xorg will finally be a thing of the past, wonder no more, as Red Hat has made it clear.
-
PipeWire 1.0 Officially Released
PipeWire was created to take the place of the oft-troubled PulseAudio and has finally reached the 1.0 status as a major update with plenty of improvements and the usual bug fixes.
-
Rocky Linux 9.3 Available for Download
The latest version of the RHEL alternative is now available and brings back cloud and container images for ppc64le along with plenty of new features and fixes.
-
Ubuntu Budgie Shifts How to Tackle Wayland
Ubuntu Budgie has yet to make the switch to Wayland but with a change in approaches, they're finally on track to making it happen.
-
TUXEDO's New Ultraportable Linux Workstation Released
The TUXEDO Pulse 14 blends portability with power, thanks to the AMD Ryzen 7 7840HS CPU.
-
AlmaLinux Will No Longer Be "Just Another RHEL Clone"
With the release of AlmaLinux 9.3, the distribution will be built entirely from upstream sources.
-
elementary OS 8 Has a Big Surprise in Store
When elementary OS 8 finally arrives, it will not only be based on Ubuntu 24.04 but it will also default to Wayland for better performance and security.
-
OpenELA Releases Enterprise Linux Source Code
With Red Hat restricting the source for RHEL, it was only a matter of time before those who depended on that source struck out on their own.
-
StripedFly Malware Hiding in Plain Sight as a Cryptocurrency Miner
A rather deceptive piece of malware has infected 1 million Windows and Linux hosts since 2017.
-
Experimental Wayland Support Planned for Linux Mint 21.3
As with most Linux distributions, the migration to Wayland is in full force. While some distributions have already made the move, Linux Mint has been a bit slower to do so.