본문으로 바로가기

vsftpd 설치 삭제 설정

category Linux Style/Ubuntu 2022. 7. 11. 11:17
반응형

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

 

반응형