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
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
|
|
|