Skip to content

Instantly share code, notes, and snippets.

@Swop
Created August 18, 2014 17:01
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 Swop/af36041fc71aedfb6d4d to your computer and use it in GitHub Desktop.
Save Swop/af36041fc71aedfb6d4d to your computer and use it in GitHub Desktop.
Delete old Linux kernels (Ubuntu)
dpkg --get-selections|grep 'linux-image*'|awk '{print $1}'|egrep -v "linux-image-$(uname -r)|linux-image-generic|linux-image-extra-$(uname -r)" |while read n;do apt-get -y remove $n;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment