Skip to content

Instantly share code, notes, and snippets.

@cruzer45
Created May 18, 2016 18:00
Show Gist options
  • Save cruzer45/8096ece9bf8a0f0339cd3c95ca939353 to your computer and use it in GitHub Desktop.
Save cruzer45/8096ece9bf8a0f0339cd3c95ca939353 to your computer and use it in GitHub Desktop.
Clean full ubuntu boot partition
dpkg --get-selections|grep 'linux-image*'|awk '{print $1}'|egrep -v "linux-image-$(uname -r)|linux-image-generic" |while read n;do apt-get -y remove $n;done
@cruzer45
Copy link
Author

This one is courtesy of user paran0ia on
http://ubuntuforums.org/showthread.php?t=1435818

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment