Skip to content

Instantly share code, notes, and snippets.

@fbakhda
Created November 21, 2024 08:23
Show Gist options
  • Save fbakhda/1ddb1b53eb5713521e1be4d2fa20344a to your computer and use it in GitHub Desktop.
Save fbakhda/1ddb1b53eb5713521e1be4d2fa20344a to your computer and use it in GitHub Desktop.
Deleting old Kernels from Ubuntu system
dpkg -l linux-{image,headers}-* | awk '/^ii/{print $2}' | egrep '[0-9]+\.[0-9]+\.[0-9]+' | grep -v $(uname -r) | xargs sudo apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment