Skip to content

Instantly share code, notes, and snippets.

@chenhengqi
Last active December 14, 2020 12:30
Show Gist options
  • Save chenhengqi/895d22317a153354d7e5301558392e1f to your computer and use it in GitHub Desktop.
Save chenhengqi/895d22317a153354d7e5301558392e1f to your computer and use it in GitHub Desktop.
Install Linux Kernel in Ubuntu

Install Linux Kernel in Ubuntu

Check current installed version

$ uname -r

Download new Linux kernel

VERSION=5.4.82-050482
DATETIME=202012080534
ARCH=amd64
linux-headers-${VERSION}_${VERSION}.${DATETIME}_all.deb
linux-headers-${VERSION}-generic_${VERSION}.${DATETIME}_${ARCH}.deb
linux-image-unsigned-${VERSION}-generic_${VERSION}.${DATETIME}_${ARCH}.deb
linux-modules-${VERSION}-generic_${VERSION}.${DATETIME}_${ARCH}.deb

Install the downloaded kernel

$ sudo dpkg -i *.deb

Reboot and Enjoy

$ sudo reboot
@chenhengqi
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment