mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-25 02:16:11 +07:00
101 lines
4.1 KiB
Markdown
101 lines
4.1 KiB
Markdown
# Kernel Upgrade Guide
|
||
|
||
A `kernel` is the core of any operating system. Before you start calling Linux an operating system, you need to know the basic concept and Linux’s birth history. **_Linux is not an operating system; mainly, Linux is a kernel_**.
|
||
|
||
## How To Upgrade Linux Kernel On Various Distributions
|
||
|
||
### Disclaimer
|
||
|
||
Upgrading the Linux kernel is not easy; you must do this only if you find security errors or hardware interaction issues. If your system crashes, you might have to recover the whole system. Mostly, Linux distributions come with the most upgraded kernel. Upgrading the Linux kernel doesn’t delete or remove the previous kernel; it is kept inside the system.
|
||
|
||
> **Note**
|
||
> You should not upgrade your kernel manually unless you want some specific driver support. You can roll back to the older kernel from the recovery menu of your Linux system. However, you may need to upgrade the kernel for hardware issues or security issues.
|
||
|
||
### Preparation
|
||
|
||
Before you start upgrading your Linux kernel, you must know the Kernel’s `current version` running inside your host machine. You may do so by `uname -r`. In case of `eBPF`, the minimum required version is `>= 5.8`
|
||
|
||
Various Linux distributions have different methods to upgrade the Linux kernel. This guide convers ways to upgrade the kernel to a desired version for most `Armbian Linux`, `Debian-based Linux`, `RedHat, Fedora based Linux`, and `Arch-based Linux` distributions.
|
||
|
||
> **Note**
|
||
> Since `dae` is builts with `eBPF`, your host must meet the minimum Kernel version, `>= 5.8` for dae to properly running.
|
||
|
||
### Upgrade to BTF Kernel on Armbian Linux
|
||
|
||
1. Backup your system using `clonezilla` or other tools.
|
||
|
||
2. Check your board famlily:
|
||
|
||
```shell
|
||
uname -r
|
||
```
|
||
|
||
3. Download corresponding kernel debs from [daeuniverse/armbian-btf-kernel](https://github.com/daeuniverse/armbian-btf-kernel/releases).
|
||
|
||
4. Extract debs and install
|
||
|
||
```shell
|
||
tar -xvf <downloaded_kernel_pkg.tar>
|
||
dpkg -i linux-*.deb
|
||
```
|
||
|
||
5. Reboot your machine.
|
||
|
||
|
||
### Upgrade Kernel on Debian-based Linux
|
||
|
||
Debian-based distributions like armbian can install a specific version of Kernel on their system. You can run the following command-line on your Linux terminal to install any specific version kernel on your Linux system. After the installation is done, reboot your system to get the desired kernel on your Linux system.
|
||
|
||
```shell
|
||
# Sync databases.
|
||
sudo apt update
|
||
# Search available kernel versions.
|
||
apt-cache search ^linux-image
|
||
# Install specific image.
|
||
sudo apt install <specific-linux-image>
|
||
```
|
||
|
||
Reboot to take effect:
|
||
|
||
```shell
|
||
sudo reboot
|
||
uname -r
|
||
```
|
||
|
||
### Upgrade kernel on RedHat and Fedora Linux
|
||
|
||
Fedora, RedHat, and RedHat-based Linux distribution users can upgrade their Linux kernel manually by downloading the kernel from the repository.
|
||
|
||
Fedora and RedHat Linux users can install a specific version of Kernel on their system. You can run the following command-line on your Linux terminal to install any specific version kernel on your Linux system. After the installation is done, reboot your system to get the desired kernel on your Linux system.
|
||
|
||
```bash
|
||
sudo yum install kernel
|
||
```
|
||
|
||
Reboot to take effect:
|
||
|
||
```bash
|
||
sudo reboot
|
||
uname -r
|
||
```
|
||
|
||
### Upgrade kernel on Arch-based Linux
|
||
|
||
Arch and Arch-based Linux distributions have a `dynamic` variety of Linux kernel. Arch Linux updates its security patch regularly; that’s why you will see notable kernel and patch updates are available on Arch Linux. Here, I will describe two methods to upgrade the kernel on Arch Linux.
|
||
|
||
Manjaro and other Arch Linux distributions often offer kernel updates and upgrades via the conventional update manager. When you run the system updater on the Linux system, it checks for the latest kernels. You can use the following `pacman` command to check for the latest kernel on Arch Linux distributions.
|
||
|
||
```bash
|
||
# Search available kernel images.
|
||
pacman -Ss ^linux$
|
||
# Install specific kernel image.
|
||
pacman -S <specific-linux-image>
|
||
```
|
||
|
||
Once you agree to install, reboot your system after the installation is finished. Then, you can check the kernel version to ensure whether the kernel is upgraded or not.
|
||
|
||
```bash
|
||
sudo reboot
|
||
uname -r
|
||
```
|