Skip to content

Instantly share code, notes, and snippets.

@nathankellenicki
Last active January 4, 2018 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathankellenicki/c68a1e8b41322186c4bbd35977653317 to your computer and use it in GitHub Desktop.
Save nathankellenicki/c68a1e8b41322186c4bbd35977653317 to your computer and use it in GitHub Desktop.
Upgrading Ubuntu 16.04 to Kernel 4.14.11 for Meltdown/Spectre
#!/bin/bash
mkdir kernel
cd kernel
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.14.11/linux-headers-4.14.11-041411-generic_4.14.11-041411.201801022143_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.14.11/linux-image-4.14.11-041411-generic_4.14.11-041411.201801022143_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.14.11/linux-headers-4.14.11-041411_4.14.11-041411.201801022143_all.deb
sudo dpkg -i *.deb
cd ..
rm -rf kernel
sudo reboot now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment