我希望使用存储库中的最新更改来更新本地包索引,并使用以下命令:
sudo apt-get update
执行此命令时,我收到几条错误消息,例如以下消息:
W: Failed to fetch http://us.archive.ubuntu.com/ubuntu/dists/precise-backports/multiverse/binary-i386/Packages 407 Proxy Authentication Required
为了尝试解决此问题,我采取了以下措施:
打开终端和文件
/etc/bash.bashrsc
sudo gedit /etc/bash.bashrc
并在文件底部添加以下两行:
export http_proxy=http://user:password@host:port/
export ftp_proxy=http://user:pass@host:port/
然而它对我来说仍然不起作用并且出现了同样的错误。
提前致谢。
答案1
尝试像这样编辑 /etc/apt/apt.conf
获取::http::proxy "http://'proxy':'port'/"; 获取::ftp::proxy "ftp://'proxy':'port'/";