Skip to content

Instantly share code, notes, and snippets.

@trevd
Created October 19, 2014 15:12
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 trevd/80bef9f7cc30d0254015 to your computer and use it in GitHub Desktop.
Save trevd/80bef9f7cc30d0254015 to your computer and use it in GitHub Desktop.
Ubuntu Kernel Update
#!/bin/sh
mkdir ~/kernel_update && cd ~/kernel_update
REMOTE_URL_BASE="http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.17.1-utopic"
wget $REMOTE_URL_BASE/linux-headers-3.17.1-031701-generic_3.17.1-031701.201410150735_amd64.deb
wget $REMOTE_URL_BASE/linux-headers-3.17.1-031701_3.17.1-031701.201410150735_all.deb
wget $REMOTE_URL_BASE/linux-image-3.17.1-031701-generic_3.17.1-031701.201410150735_amd64.deb
sudo dpkg -i ~/kernel_update/*.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment