Skip to content

Instantly share code, notes, and snippets.

@mfgbhatti
Last active April 17, 2023 15:07
Show Gist options
  • Select an option

  • Save mfgbhatti/db12fb2d19bca99e868c4b0b91765094 to your computer and use it in GitHub Desktop.

Select an option

Save mfgbhatti/db12fb2d19bca99e868c4b0b91765094 to your computer and use it in GitHub Desktop.
find installed kernel and update grub

also leave one more kernel as fallback

dpkg --list | grep linux-image | awk '{ print $2 }' | sort -V | sed -n '/'`uname -r`'/q;p' | sed -n '/linux-image second last/q' | xargs sudo apt-get -y purge

update grub after this

sudo update-grub

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment