How to compile your own kernel
Installing the Kernel
Install your new kernel with the make install
command. Installing the kernel is a quick process, but you're not done yet. You have to configure GRUB to recognize your new kernel (Listing 3).
Listing 3
Configuring GRUB
# make install sh ./arch/x86/boot/install.sh 5.12.0 arch/x86/boot/bzImage System.map "/boot"
The kernel install process copies three files to your /boot
directory (Listing 4): The initramfs
file is the initial filesystem that mounts your root filesystem, the system.map
file is a symbol lookup table, and the vmlinuz
file is your compressed kernel.
Listing 4
Files Copied to /boot Directory
-rw-------. 1 root root 96350022 Jul 12 09:58 /boot/initramfs-5.12.0.img -rw-r--r--. 1 root root 5018232 Jul 12 09:56 /boot/System.map-5.12.0 -rw-r--r--. 1 root root 9202304 Jul 12 09:56 /boot/vmlinuz-5.12.0
Editing GRUB
You must update the GRUB configuration to refer to and use the new kernel:
# grub2-mkconfig -o /boot/grub2/grub.cfg Generating grub configuration file ... done
The grubby
command sets your new kernel as the default, so you don't have to select it when your system next boots:
# grubby --set-default /boot/vmlinuz-5.12.0
The default is /boot/loader/entries/3f8c3788864245079651b8002d18f249-5.12.0.conf
with index
and kernel /boot/vmlinuz-5.12.0
.
Now the only thing left to do is to reboot and see how things go. Issue the reboot
command and wait for the system to boot to a login prompt:
# reboot
When your system returns to a login prompt, login and see if the new kernel is loaded:
$ uname -a Linux server1 5.12.0 #3 SMP Mon Jul 12 03:24:52 EDT 2021 x86_64 x86_64x86_64 GNU/Linux
Success! Your new kernel is loaded and working.
Troubleshooting
Sometimes compiling the kernel fails. In my case, it failed multiple times because I ran out of space on my system. A few other times, the process failed because there were missing certification files. When your compile fails, the messages you receive will generally point you to the correct location of the problem.
You can edit the .config
file and comment the offending lines, especially for "files not found" errors that refer to certificates. Edit the file using your favorite text editor, comment the line with a leading #
, save the file, and continue compiling by reissuing the make
command. The compile process will pick up again where it left off.
I have never had more than three or four restarts for a kernel compile. Most often it's for those missing certificate files previously mentioned. If you encounter an error that isn't file-related and the failure doesn't designate a particular CONFIG_
entry that you can comment out, then your best option is to search online for a similar error. I know that isn't a great option. However, chances are good that someone else has encountered the same error, and you can quickly fix the problem and continue with your compile.
« 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
-
Zorin OS 17 Beta Available for Testing
The upcoming version of Zorin OS includes plenty of improvements to take your PC to a whole new level of user-friendliness.
-
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.