Install to latest Linux Kernel on Ubuntu 22.04 and Ubuntu 20.04. Here is how to install Linux Kernel 5.19 on Linux Ubuntu. Kernel 5.9 August 2022 Release is the latest Linux Kernel.
For 64 bit architecture Systems, Linux Ubuntu users should download the following Kernel files:
linux-headers-VERSION-NUMBER_all.deb
linux-headers-VERSION-NUMBER_amd64.deb
linux-image-VERSION-NUMBER_amd64.deb
linux-modules-VERSION-NUMBER_amd64.deb
Download Kernel https://kernel.ubuntu.com/~kernel-ppa/mainline/?C=N;O=D
Linux Kernel 5.19 – August 2022 Release
Kernel v5.19 Mainline Test is the latest Kernel released for Linux Systems. https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/ The release 5.19 brings Run-Time Average Power Limiting (RAPL) support for Intel’s Raptor and Alder Lake processors. It also features new Intel IFS driver support which can detect the hardware issues at an early stage of deployment.
The release statement by Linus Torvalds read:
On a personal note, the most interesting part here is that I did the release (and am writing this) on an arm64 laptop. It’s something I’ve been waiting for for a loong time, and it’s finally reality, thanks to the Asahi team. We’ve had arm64 hardware around running Linux for a long time, but none of it has really been usable as a development platform until now. It’s the third time I’m using Apple hardware for Linux development – I did it many years ago for powerpc development on a ppc970 machine. And then a decade+ ago when the Macbook Air was the only real thin-and-lite around. And now as an arm64 platform. Not that I’ve used it for any real work, I literally have only been doing test builds and boots and now the actual release tagging. But I’m trying to make sure that the next time I travel, I can travel with this as a laptop and finally dogfooding the arm64 side too.
https://lkml.org/lkml/2022/7/31/295
For Linux Kernel 5.19, we shall download the following modules:
amd64/linux-headers-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
amd64/linux-headers-5.19.0-051900_5.19.0-051900.202207312230_all.deb
amd64/linux-image-unsigned-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
amd64/linux-modules-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
Open terminal and run the following commands:
sudo apt-get update
sudo apt-get upgrade
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/amd64/linux-headers-5.19.0-051900_5.19.0-051900.202207312230_all.deb
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/amd64/linux-headers-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/amd64/linux-image-unsigned-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/amd64/linux-modules-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
sudo apt install ./linux-headers-5.19.0*.deb ./linux-image-unsigned-5.19.0*.deb ./linux-modules-5.19.0*.deb
Once the installation/execution of the above commands are complete, reboot the system. Upon the next immediate Ubuntu will by default boot into the newer kernel version.