
Linus Torvalds announced the Linux Kernel 5.19 which is available to download for general usage with new features, Major ARM updates, improvements, better hardware support, and other new updates.
As per Linus Torvalds
On a personal note, the most interesting part here is that I did the
It’s the third time I’m using Apple hardware for Linux development – I
release (and am writing this) on an arm64 laptop. It’s something I’ve
been waiting for for a long time, and it’s finally a 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.
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.
This tutorial will be helpful for beginners to install kernel 5.19 On Ubuntu 22.04 LTS, Ubuntu 20.04 LTS, Ubuntu 18.04 LTS, and LinuxMint 20.3
How to Install Linux Kernel 5.19 On Ubuntu / Linux Mint?
Step 1: Update the system before proceeding to install kernel 5.19
sudo apt update && sudo apt upgrade
Step 2: Download the mainline kernel packages for Kernel 5.19 from the Ubuntu kernel Mainline page or use the below commands.
wget https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/amd64/linux-headers-5.19.0-051900_5.19.0-051900.202207312230_all.deb
wget 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 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 https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.19/amd64/linux-modules-5.19.0-051900-generic_5.19.0-051900.202207312230_amd64.deb
Step 3: Install the .deb files
sudo dpkg -i *.deb
Step 4: Reboot the server.
Once the installation succeeded, reboot the system and verify the newly installed kernel by using the below commands.
uname -r

Conclusion
From this tutorial, you have learned how to download and install Linux Kernel 5.19 on Ubuntu, Debian, and Linux Mint.
Do let us know your comments and feedback in the comments section below.
If my articles on TipsonUNIX have helped you, kindly consider buying me a coffee as a token of appreciation
Thank You for your support!!