Skip to content

Instantly share code, notes, and snippets.

@chluehr
Created October 24, 2014 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chluehr/a5e263ab21400b5bce19 to your computer and use it in GitHub Desktop.
Save chluehr/a5e263ab21400b5bce19 to your computer and use it in GitHub Desktop.
removes/uninstalls/cleans all unused kernes from a system. use with caution!
#!/bin/bash
dpkg -l linux-{image,headers}-"[0-9]*" | awk '/ii/{print $2}' | grep -ve $kernelver |xargs sudo apt-get purge -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment