Skip to content

Instantly share code, notes, and snippets.

@alincc
Created August 16, 2020 17:45
Show Gist options
  • Save alincc/cb59c136e39561748664924223251886 to your computer and use it in GitHub Desktop.
Save alincc/cb59c136e39561748664924223251886 to your computer and use it in GitHub Desktop.
Remove unused linux images
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