如何在辅助 Ubuntu/Debian 服务器上重新启用 FTP,以从带有镜像存储库的主 Linux 服务器提取更新?

如何在辅助 Ubuntu/Debian 服务器上重新启用 FTP,以从带有镜像存储库的主 Linux 服务器提取更新?

将我的两个 Linux 服务器都更新到了 Ubuntu 19.10 和最新版本的 Debian,它们都指向运行镜像存储库的主 Linux 服务器,并允许通过 FTP 与其通信,现在我收到一条消息,指出

The method 'ftp' is unsupported and disabled by default. 
Consider switching to http(s). 
Set Dir::Bin::Methods::ftp to "ftp" to enable it again.

获取失败后ftp://。如何重新启用通过 FTP 检索系统更新?

答案1

在命令行运行

echo 'Dir::Bin::Methods::ftp "ftp";' | sudo tee -a /etc/apt/apt.conf.d/99local-ftp

这将在包含以下行的99local-ftp文件夹中创建一个名为(你可以选择其他名称)的配置文件/etc/apt/apt.conf.d/

Dir::Bin::Methods::ftp "ftp"

这将重新启用 apt 的 FTP。

相关内容