Skip to content

Instantly share code, notes, and snippets.

@alambike
Created July 17, 2014 07:18
Show Gist options
  • Save alambike/7c050ab224ac47f52f9b to your computer and use it in GitHub Desktop.
Save alambike/7c050ab224ac47f52f9b to your computer and use it in GitHub Desktop.
Purge old kernel images, headers and modules
# http://markmcb.com/2013/02/04/cleanup-unused-linux-kernels-in-ubuntu/
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d'| xargs sudo apt-get purge -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment