Skip to content

Instantly share code, notes, and snippets.

@ds82
Created April 9, 2015 05:49
Show Gist options
  • Save ds82/72ef893136b102df502d to your computer and use it in GitHub Desktop.
Save ds82/72ef893136b102df502d to your computer and use it in GitHub Desktop.
Remove old/unused linux kernels in debian/ubuntu
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment