dpkg --list |grep "^rc" | cut -d " " -f 3 | xargs -r sudo dpkg --purge
Sunday, 7 September 2014
Purge Removed packages
Packages marked as rc by dpkg mean that the configuration files are not yet removed. The following command will purge them:
Possibly Related Posts
How to permanently delete ALL older kernels
This script will remove ALL versions but two, the currently active and the most recent of the remaining installed versions:
#/bin/bash
keep=2
ls /boot/ | grep vmlinuz | sed 's@vmlinuz-@linux-image-@g' | grep -v $(uname -r) | sort -Vr | tail -n +$keep | while read I
do
aptitude purge -y $I
done
update-grub
you can specify how many kernels to keep by adjusting the keep variable, if you set it to 1, only the active kernel will be left installed.
Or you can do it in one line:
Or you can do it in one line:
ls /boot/ | grep vmlinuz | sed 's@vmlinuz-@linux-image-@g' | grep -v $(uname -r) | sort -Vr | tail -n +2 | xargs -r sudo aptitude purge -ythat you can use in crontab.
Possibly Related Posts
Subscribe to:
Posts (Atom)