我有一个 11.04 x86 服务器。
我跑了sudo apt-get install vsftpd,成功了。但是我在vsftpd.conf任何地方都找不到该文件。我以为它应该在/etc/vsftpd.conf.
Lek*_*eyn 21
您遇到了一个奇怪的问题,请尝试清除缓存,更新存储库信息并重新安装:
sudo apt-get clean
sudo apt-get update
sudo apt-get install --reinstall vsftpd
Run Code Online (Sandbox Code Playgroud)
如果这不起作用,请清除 vsftpd(删除它,包括其配置文件)并重新安装它:
sudo apt-get purge vsftpd
sudo apt-get install vsftpd
Run Code Online (Sandbox Code Playgroud)
听起来安装没有成功完成。最快的解决方案可能是重新安装 vsftpd:
sudo apt-get install --reinstall vsftpd
Run Code Online (Sandbox Code Playgroud)