반응형
https://installlion.com/ubuntu/xenial/main/v/vsftpd/uninstall/index.html
Uninstall just vsftpd
sudo apt-get remove vsftpd
This will remove just the vsftpd package itself.
Uninstall vsftpd and its dependencies
sudo apt-get remove --auto-remove vsftpd
This will remove the vsftpd 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 vsftpd then this will work.
Caution! Purged config/data can not be restored by reinstalling the package.
sudo apt-get purge vsftpd
Or similarly, like this vsftpd
sudo apt-get purge --auto-remove vsftpd
반응형