Skip to content

Instantly share code, notes, and snippets.

@niun
Created July 27, 2015 11:30
Show Gist options
  • Save niun/c8e163d3c09061d3c478 to your computer and use it in GitHub Desktop.
Save niun/c8e163d3c09061d3c478 to your computer and use it in GitHub Desktop.
Debian: Remove old kernel packages
http://tuxtweaks.com/2010/10/remove-old-kernels-in-ubuntu-with-one-command/
dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | grep -E "(image|headers)" | xargs sudo apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment