Tips and tweaks for reducing Linux startup time
GRUB Delay
By default, GRUB gives the user five seconds to interrupt the automatic boot process. If you want to shave that five second wait down to one second, change the GRUB timeout variable in /etc/default/grub
to GRUB_TIMEOUT=1
. Then enter sudo update-grub
to transfer this value by recreating /boot/grub/grub.cfg
. If you make this change, you'd better memorize the boot menu, because you'll only have one second to switch from the default. You can also set the value to
, which would mean you wouldn't see the boot menu at all and would need to use a Live system for repairs in case of an error.
A Brief Introduction to initrd
Initrd, which is short for "Initial RAM disk," is a temporary filesystem that is copied into memory to support the Linux startup process. One of the first goals of the startup process is to gain access to the root partition to access the files and start the init system. However, the root partition could be on a network drive, a USB device with one filesystem, or an NVMe disc with another filesystem. Initrd therefore contains a large number of drivers to ensure that the system will start regardless of where the root partition resides.
When the startup process unpacks initrd into memory, it spends a lot of time unpacking drivers that might not be needed for your hardware.
In the Linux messages, which you can view by typing sudo dmesg
or journalctl -k
, you will find output like Listing 2. After almost 400ms, the Linux kernel unpacks the initrd image, taking about 419ms to do so.
Listing 2
Log Messages for initrd
$ sudo dmesg | grep -A1 initramfs [ 0.398506] Trying to unpack rootfs image as initramfs... [ 0.817686] Freeing initrd memory: 25484K
Analysis Made Easy
The systemd-bootchart
tool displays the kernel's metrics in graphical form. If systemd-bootchart
isn't present on your system, enter
sudo apt install systemd-bootchart
to install the package. Then add the string from Listing 3 to the GRUB_CMDLINE_LINUX_DEFAULT
variable in /etc/default/grub
. After running sudo update-grub
and a subsequent reboot, you will have an SVG file in the /run/log/
directory that you can view in the browser or an image viewer (Figure 1). The chart will help you identify which routines have the longest runtime and therefore the greatest optimization potential.
Listing 3
Supplementing the GRUB Command Line
*n*itcall_debug log_buf_len=2M init=/lib/systemd/systemd-bootchart
The Linux initcall_debug
parameter in Listing 3 tells Linux to print timing information for each initcall
. initcall
s are used to load statically linked kernel drivers and subsystems.
As you can see in Figure 2, the populate_rootfs()
method is one of the most time consuming, with a runtime of 419ms (Figure 2). My challenge is to reduce this time to 10ms.
« Previous 1 2 3 4 Next »
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
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.