Saturday, November 15, 2014

How to uninstall proftpd

Uninstall just proftpd-basic

sudo apt-get remove proftpd-basic
This will remove just the proftpd-basic package itself.

Uninstall proftpd-basic and it's dependencies

sudo apt-get remove --auto-remove proftpd-basic
This will remove the proftpd-basic package and any other dependant packages which are no longer needed.

Purging your config/data too

If you also want to delete your local/config files for proftpd-basic then this will work.
 Caution! Purged config/data can not be restored by reinstalling the package.
sudo apt-get purge proftpd-basic
Or similarly, like this
sudo apt-get purge --auto-remove proftpd-basic

No comments:

Post a Comment