【转载】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 <Enter> 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 <Enter> to continue.

The required packages should be installed.

Now copy the configuration file that the current kernel is using to the linux-4.15.2directory 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 <Up>, <Down>, <Left> and <Right> arrow keys to navigate and <Enter> and <ESC> 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 <Save> option and press <Enter>

Then you should see the following window. Press <Enter> again.

Then you should see the following window. Press <Enter> again.

You should be back to the main configuration window.

Go to <Exit> and press <Enter>

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 <Enter>.

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

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.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值