Skip to content

Instantly share code, notes, and snippets.

@argilzar
Created June 1, 2014 10:33
Show Gist options
  • Select an option

  • Save argilzar/28471024f8b251b5ef13 to your computer and use it in GitHub Desktop.

Select an option

Save argilzar/28471024f8b251b5ef13 to your computer and use it in GitHub Desktop.
Remove old linux kernels, usefull when your /boot partition is full
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment