Comments on How to Install Linux Kernel 6.0 on Ubuntu 22.04

The kernel is the core part of any Linux-based operating system. It acts as a bridge between the software and hardware of the computer system. In this tutorial, I will show you how to install Linux Kernel 6.0 on Ubuntu 22.04.

3 Comment(s)

Add comment

Please register in our forum first to comment.

Comments

By: nhybgtvfr

i think you need to update some of the commands / expected output.

eg:

 

you start with downloading and extracting rc7:

[code]

wget https://git.kernel.org/torvalds/t/linux-6.0-rc7.tar.gztar xvf linux-6.0-rc7.tar.gzcd linux-6.0-rc7/

[/code]

 

but init, and expect output indicating rc1:

[code]

initrd.img-6.0.0-rc1vmlinuz-6.0.0-rc1

[/code]

 

could confuse some linux newbies

By: till

Thank you for the notice. I've updated the guide.

By: nhybgtvfr

also. the full kernel has been released...  it can be installed with:

 

[code]

wget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/amd64/linux-headers-6.0.0-060000_6.0.0-060000.202210022231_all.debwget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/amd64/linux-headers-6.0.0-060000-generic_6.0.0-060000.202210022231_amd64.debwget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/amd64/linux-modules-6.0.0-060000-generic_6.0.0-060000.202210022231_amd64.debwget -c https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.0/amd64/linux-image-unsigned-6.0.0-060000-generic_6.0.0-060000.202210022231_amd64.debsudo apt install ./linux-*.deb

sudo reboot

[/code]

 

and to uniinstall... reboot, choose advanced from the boot menu and select to boot the old kernel, then:

[code]

sudo apt remove linux-headers-6.0.0* linux-modules-6.0.0* linux-image-unsigned-6.0.0*

[/code]