Kernel Linux

Upgrade Kernel on Arch Linux

Upgrade Kernel on Arch Linux
Arch is a rolling release Linux distro. It means you always get up to date software packages and kernel updates on Arch Linux. But that doesn't mean you can't manually install an updated version of Kernel on Arch Linux. Of course you can.

In this article, I will show you how to update the kernel of Arch Linux using the package manager. I will also show you how to compile the kernel from source and use it on Arch Linux. Let's get started.

Updating Kernel using Package Manager:

First check the version of kernel you're currently using with the following command:

$ uname -r

Now run the following command to perform a system update with pacman:

$ sudo pacman -Syu

As you can see from the marked section in the screenshot below, the kernel package will also be updated. Now press 'y' and then press to continue.

Pacman package manager should start downloading and installing the updates.

All the packages including the kernel is updated at this point.

Now restart your Arch Linux machine with the following command:

$ sudo reboot

Once your computer starts, run the following command to check for the kernel version again:

$ uname -r

As you can see from the screenshot below, the kernel is updated to 4.15.1.

Compiling Kernel from Source:

You can also download and compile an updated version of kernel from the official website of Linux kernel at https://www.kernel.org

I am going to show you how in this section.

First go to https://www.kernel.org and you should see the following page as shown in the screenshot below.

Now click on the marked section as shown in the screenshot below.

The latest version of Linux kernel as of the time of writing is 4.15.2. Your web browser should prompt you to save it. Click on “Save File” and then click on “OK” as marked in the screenshot below.

The Linux kernel archive file should start downloading.

Once the download is complete, navigate to the directory where you downloaded the file. In my case it is the Downloads/ directory in my USER's home directory.

$ cd Downloads/

I listed the directory contents with ls command and as you can see, linux-4.15.2.tar.xz file is there.

Now extract the archive file with the following command:

$ tar xvf linux-4.15.2.tar.xz

The file should be extracted.

NOTE: To compile a Linux kernel, you need more than 20GB of free space. You can check how much space you have left with df -h command.

Once the file is extracted, a new directory should be created. In my case it is linux-4.15.2/ directory as shown in the screenshot below.

Now navigate to the directory with the following command:

$ cd linux-4.15.2

Before starting the kernel compilation process, make sure you run the following command to install ncurses, make, gcc, bc, and openssl packages:

$ sudo pacman -S ncurses make gcc bc openssl

Press 'y' and then press to continue.

The required packages should be installed.

Now copy the configuration file that the current kernel is using to the linux-4.15.2 directory with the following command:

$ zcat /proc/config.gz > .config

Now run the following command to prepare the configuration file for the new version of kernel.

$ make menuconfig

It should start the following terminal based graphical interface. You can press , , and arrow keys to navigate and and to select or go back one step respectively.

From here you can enable or disable specific kernel features. If you don't know what it is, just leave the defaults.

Once you're satisfied with the configuration file, go to option and press

Then you should see the following window. Press again.

Then you should see the following window. Press again.

You should be back to the main configuration window.

Go to and press

You should be back to the terminal as shown in the screenshot below.

Now run the following command to start the compilation process:

$ make

The kernel compilation process should start.

It should take a long time for the kernel compilation process to finish. Once it's done, you should see the following window as shown in the screenshot below.

Now install all the compiled kernel modules with the following command:

$ sudo make modules_install

All the kernel modules should be installed.

Now copy the vmlinuz file for your architecture to the /boot directory. For 32-bit operating system, run the following command:

$ sudo cp -v arch/x86/boot/bzImage /boot/vmlinuz-4.15.2

For 64-bit operating system, run the following command:

$ sudo cp -v arch/x86_64/boot/bzImage /boot/vmlinuz-4.15.2

The file should be copied.

Now generate an initramfs image and save it to /boot directory with the following command:

$ sudo mkinitcpio -k 4.15.2-ARCH -g /boot/initramfs-4.15.2.img

The initramfs file should be generated.

Now copy the System.map file to /boot directory with the following command:

$ sudo cp -v System.map /boot/System.map-4.15.2

Now make a symbolic link of the System.map-4.15.2 file to /boot/System.map with the following command:

$ sudo ln -sf /boot/System.map-4.15.2 /boot/System.map

Now generate a grub.cfg file with the following command:

$ sudo grub-mkconfig -o /boot/grub/grub.cfg

A new grub.cfg file should be generated.

Now reboot your computer with the following command:

$ sudo reboot

When your computer shows the GRUB menu, select the “Advanced options for Arch Linux” option and press .

Then select the menu for your newly installed kernel from the list and press .

Once your computer boot, run the following command to check for the kernel version:

$ uname -r

The kernel should be updated as you can see from the screenshot below.

That's how you upgrade the kernel of Arch Linux. Thanks for reading this article.

Cursor jumps or moves randomly while typing in Windows 10
If you find that your mouse cursor jumps or moves on its own, automatically, randomly while typing in Windows laptop or computer, then some of these s...
How to reverse Mouse and Touchpads scrolling direction in Windows 10
Mouse and Touchpads not only make computing easy but more efficient and less time-consuming. We cannot imagine a life without these devices, but still...
How to change Mouse pointer and cursor size, color & scheme on Windows 10
The mouse pointer and cursor in Windows 10 are very important aspects of the operating system. This can be said for other operating systems as well, s...