Skip to content

Instantly share code, notes, and snippets.

@M64GitHub
Created March 17, 2024 11:02
Show Gist options
  • Select an option

  • Save M64GitHub/ffc538d5bbca853085772e1cc2a30b72 to your computer and use it in GitHub Desktop.

Select an option

Save M64GitHub/ffc538d5bbca853085772e1cc2a30b72 to your computer and use it in GitHub Desktop.
Ubuntu 22.04 LTS Kernel upgrade to 6.8-test

Installing kernel 6.8-test on Ubuntu 22.04 LTS

Install kernel-6.8-test with original Ubuntu patches on 22.04 LTS:

  1. Advised: update system first
sudo apt update && sudo apt upgrade -y
  1. Download and install kernel packages from the Ubuntu kernel page:
wget -c https://kernel.ubuntu.com/mainline/v6.8/amd64/linux-headers-6.8.0-060800_6.8.0-060800.202403131158_all.deb
wget -c https://kernel.ubuntu.com/mainline/v6.8/amd64/linux-headers-6.8.0-060800-generic_6.8.0-060800.202403131158_amd64.deb
wget -c https://kernel.ubuntu.com/mainline/v6.8/amd64/linux-modules-6.8.0-060800-generic_6.8.0-060800.202403131158_amd64.deb
wget -c https://kernel.ubuntu.com/mainline/v6.8/amd64/linux-image-unsigned-6.8.0-060800-generic_6.8.0-060800.202403131158_amd64.deb

sudo dpkg -i *.deb
  1. Update grub
sudo update-grub
  1. Reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment