当我运行 sudo apt-get install firefox 来安装 firefox 时,连接到 us.archive.unbuntu.com 时安装失败。我该如何修复此问题?
答案1
您是否使用代理网络?在这种情况下,您必须通过以下方式导出代理:
export http_proxy="http://<proxy>:<port>/"
export https_proxy="https://<proxy>:<port>/"
或者编辑文件/etc/apt/apt.conf
并添加
Acquire::http::proxy "http://<proxy>:<port>/";
Acquire::ftp::proxy "ftp://<proxy>:<port>/";
Acquire::https::proxy "https://<proxy>:<port>/";
如果问题不是出在代理上,请更改服务器国家/地区,然后重试,可能存在连接故障,正如 @antonello 所说