Skip to content

Instantly share code, notes, and snippets.

@xkou
Last active October 28, 2016 02:41
Show Gist options
  • Save xkou/5bfb64cd7282691ef7341fbcb0532d21 to your computer and use it in GitHub Desktop.
Save xkou/5bfb64cd7282691ef7341fbcb0532d21 to your computer and use it in GitHub Desktop.
install ubuntu kernel
#Install a 4.3+ kernel from http://kernel.ubuntu.com/~kernel-ppa/mainline, for example:
VER=4.5.1-040501
PREFIX=http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.5.1-wily/
REL=201604121331
wget ${PREFIX}/linux-headers-${VER}-generic_${VER}.${REL}_amd64.deb
wget ${PREFIX}/linux-headers-${VER}_${VER}.${REL}_all.deb
wget ${PREFIX}/linux-image-${VER}-generic_${VER}.${REL}_amd64.deb
sudo dpkg -i linux-*${VER}.${REL}*.deb
# reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment