How to compile your own kernel
Custom Kernel
While not a requirement, compiling the Linux kernel lets you add or remove features depending on your specific needs and possibly make your kernel more efficient.
When people refer to Linux today, they generally mean a Linux distribution, which is composed of the Linux kernel, applications, services, filesystems, and other supporting software. Formally, Linux refers to the Linux kernel, which is the core of all Linux distributions. The kernel manages memory, processes, devices, and system calls. The Linux kernel is the software interface between what we call an operating system and computer hardware.
In this article, you will learn to download, decompress, compile, and install a new Linux kernel onto your system. I'm using a Red Hat Enterprise Linux 8.x system; this procedure should work on all Red Hat Enterprise Linux compatible systems.
Why Compile?
Compiling a Linux kernel is 100 percent optional. Your system will work just fine with a prepackaged Linux kernel. Many enterprises never compile a kernel, and their systems handle workloads without issue.
The primary reason for compiling a kernel is to add features and support that aren't in the kernel by default or to remove some features that are (e.g., virtualization). The kernel, by default, enables virtualization, but not everyone needs or wants this capability. You can selectively remove support for it and work through the compile process to create a leaner kernel that better suits your needs.
Requirements
There are no special skills required to compile a kernel. Although developers use the compilation process, you do not need programming skills. The only skill required is being able to issue commands at a shell prompt and to edit the configuration file should something go amiss during compilation.
You do need root access to the system through sudo
, su
, or direct login as root. In addition to root access, you need the following prerequisites before compiling the kernel:
- The Linux kernel source code
- Sufficient free space on your disk (~20GB or more)
- Developer Tools suite
- Developer support packages
Installing Development Tools
You'll need to install the Development Tools bundle and a few extra packages to be able to set up your system and to compile from source code:
# dnf groupinstall "Development Tools" # dnf -y install ncurses-devel bison flex elfutils-libelf-devel openssl-devel
After the package installations complete, check your system's available disk space (Listing 1).
Listing 1
Checking Available Disk Space
df -h Filesystem Size Used Avail Use% Mounted on devtmpfs 434M 0 434M 0% /dev tmpfs 484M 0 484M 0% /dev/shm tmpfs 484M 6.6M 477M 2% /run tmpfs 484M 0 484M 0% /sys/fs/cgroup /dev/mapper/rhel-root 43G 26G 17G 60% / /dev/sda1 1014M 433M 582M 43% /boot tmpfs 97M 0 97M 0% /run/user/1001
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 Fans Everywhere Rejoice for the Latest Release
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.