Skip to content

Instantly share code, notes, and snippets.

@benauthor
Created November 28, 2017 20:15
Show Gist options
  • Save benauthor/b9a8e29d8ab710bb775c90e8abb0a798 to your computer and use it in GitHub Desktop.
Save benauthor/b9a8e29d8ab710bb775c90e8abb0a798 to your computer and use it in GitHub Desktop.
desktop linux still is a disaster
#!/bin/bash
echo 'cleaning old kernels. fuck you, ubuntu.'
df -h /boot
echo 'all versions'
dpkg --list | grep -P "linux-image"
echo 'maybe delete'
dpkg --list | grep -P "linux-image-\d" | tr -s " " | cut -d " " -f 2 | sort | head -n -1
echo 'via "sudo dpkg --purge"'
echo 'current kernel is'
uname -r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment