1
0
Fork 0
My old website. I completely made this one in bash-scripting.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
400 B

<b>How to remove debian packages</b>
The normal way to remove a Debian package is to use
apt-get remove name
Or
aptitude remove name
But in this way you are left with a bunch of configuration files. You can remove
individual package configuration with:
apt-get purge name
Or all those packages that has been removed, but not completely:
dpkg -l | grep ^rc | cut -d' ' -f3|xargs dpkg -P