Skip to content

Instantly share code, notes, and snippets.

@ichadhr
Created November 10, 2015 17:37
Show Gist options
  • Save ichadhr/f0e4dd0b18017edec8af to your computer and use it in GitHub Desktop.
Save ichadhr/f0e4dd0b18017edec8af to your computer and use it in GitHub Desktop.
Removing Old Kernel Ubuntu
#!/bin/bash
# Remove old linux
echo $(dpkg --list | grep linux-image | awk '{ print $2 }' | sort -V | sed -n '/'`uname -r`'/q;p') $(dpkg --list | grep linux-headers | awk '{ print $2 }' | sort -V | sed -n '/'"$(uname -r | sed "s/\([0-9.-]*\)-\([^0-9]\+\)/\1/")"'/q;p') | xargs sudo apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment