Skip to content

Instantly share code, notes, and snippets.

@dustinrue
Created December 27, 2011 15:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinrue/1524009 to your computer and use it in GitHub Desktop.
Save dustinrue/1524009 to your computer and use it in GitHub Desktop.
Remove old and unused kernels from a Ubuntu/Debian system
dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get remove -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment