无法找到软件包 vsftpd Ubuntu 17.10

无法找到软件包 vsftpd Ubuntu 17.10

我正在使用以下命令安装 ftp,但它显示错误消息:

sudo apt-get install vsftpd

错误

Building dependency tree
Reading state information... Done
E: Unable to locate package vsftpd

答案1

在安装软件包之前,您是否尝试过从其源重新同步软件包索引文件?

sudo apt-get update && sudo apt-get install vsftpd

答案2

我移除了新加坡的镜像,并将镜像从新加坡改为纽约,现在它可以正常工作了。

答案3

您可以下载以下.deb档案amd64和/或i386从这些链接下载。转到您下载.deb存档的目录,然后通过以下方式手动安装软件包:

sudo dpkg -i "packageName.deb" #replace the text in quotes with the name of the package you downloaded
sudo apt-get install -f  # to fix any dependencies that might be broken.

相关内容