Skip to content

Instantly share code, notes, and snippets.

@vpnwall-services
Last active April 23, 2018 18:14
Show Gist options
  • Save vpnwall-services/e15045da9dba767477b7d7ff8d819a2d to your computer and use it in GitHub Desktop.
Save vpnwall-services/e15045da9dba767477b7d7ff8d819a2d to your computer and use it in GitHub Desktop.
[Clean old kernels] Script to deleted unused kernels and free disk space
#!/bin/bash
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get purge -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment