How to compile your own kernel
Downloading the Kernel Source
As the final step before getting started on compiling the kernel, you need to download the kernel source from kernel.org. To streamline the different steps of downloading, verifying, and unpacking the kernel source, I used a script supplied by kernel.org [1]. Copy the contents of the script into your favorite text editor, save it, and add the executable permission to it. Prior to running the script, create the Downloads
directory in the root user's home directory. Proceed from here on as the root user. You must supply the kernel version number you wish to download as an argument to the script. For this example, I used 5.12:
# mkdir Downloads # ./get-verified-tarball.sh 5.12
Listing 2 shows the script's output.
Listing 2
Download Script Output
Using TMPDIR=/root/Downloads/linux-tarball-verify.yceAuEZym.untrusted Making sure we have all the necessary keys gpg: WARNING: unacceptable HTTP redirect from server was cleaned up gpg: WARNING: unacceptable HTTP redirect from server was cleaned up pub rsa4096 2013-01-24 [SC] B8868C80BA62A1FFFAF5FDA9632D3A06589DA6B1 uid [ unknown] Kernel.org checksum autosigner <autosigner@kernel.org> pub rsa4096 2011-09-23 [SC] 647F28654894E3BD457199BE38DBBDC86092693E uid [ unknown] Greg Kroah-Hartman <gregkh@kernel.org> sub rsa4096 2011-09-23 [E] pub rsa2048 2011-09-20 [SC] ABAF11C65A2970B130ABE3C479BE3E4300411886 uid [ unknown] Linus Torvalds <torvalds@kernel.org> sub rsa2048 2011-09-20 [E] Downloading the checksums file for linux-5.12 Verifying the checksums file gpgv: Signature made Sun 11 Jul 2021 07:25:09 AM EDT gpgv: using RSA key 632D3A06589DA6B1 gpgv: Good signature from "Kernel.org checksum autosigner <autosigner@kernel.org>" Downloading the signature file for linux-5.12 Downloading the XZ tarball for linux-5.12 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 112M 100 112M 0 0 2445k 0 0:00:47 0:00:47 --:--:-- 354k Verifying checksum on linux-5.12.tar.xz linux-5.12.tar.xz: OK Verifying developer signature on the tarball gpgv: Signature made Mon 26 Apr 2021 12:49:05 AM EDT gpgv: using RSA key 647F28654894E3BD457199BE38DBBDC86092693E gpgv: Good signature from "Greg Kroah-Hartman <gregkh@kernel.org>" Successfully downloaded and verified /root/Downloads/linux-5.12.tar.xz
You can copy the kernel source to /usr/src/kernels
, or you can leave it where it is (/root/Downloads
) and extract the kernel source tar file:
# cd Downloads # unxz -v linux-5.12.tar.xz # tar xvf linux-5.12.tar # cd linux-5.12
Now you're ready to begin compiling the kernel.
Compiling the Kernel
This first step, which is completely optional, is my favorite part of compiling a new kernel or adding and subtracting features from an existing one. It is the menuconfig
command, which results in the Linux Kernel Configuration menu (Figure 1):
# make menuconfig
Using this graphical interface, you can enable and disable features for your new kernel. Once you've made the changes you require, exit the menu. This procedure saves your choices to the hidden configuration file .config
and backs up any existing .config
file to .config.old
. You're now ready to compile the kernel. Start the compile process by running the make
command:
# make
Compiling the kernel can take a very long time depending on your system's CPU and memory capacity. For some small virtual machines, the process can take hours. For example, mine took roughly 10 hours to complete after performing a bit of troubleshooting along the way. For details, see the "Troubleshooting" section.
Once complete, you will find your new kernel listed as an executable file named vmlinux
. You're now almost ready to install the new kernel onto your system. But first, you need to install the new kernel modules.
Kernel Modules
Install the Linux kernel modules created during the compile process with:
# make modules_install
This process only takes a few minutes and occurs without intervention.
« 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
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
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.