407 Proxy Authentication Required錯誤的解決辦法
如果你公司的網(wǎng)絡(luò)架構(gòu)是通過一個代理服務器上網(wǎng),那么Ubuntu在使用apt-get更新的時候會出現(xiàn)問題。即使你配置了系統(tǒng)范圍內(nèi)的代理(System wide proxy server)。通常在執(zhí)行apt-get update等命令的時候,會出現(xiàn)下面這樣的錯誤:
407 Proxy Authentication Required
很簡單,我們只要更改apt-get的配置文件就可以了,修改/etc/apt/apt.conf的內(nèi)容:
$ cat /etc/apt/apt.conf
Acquire::http::proxy "http://username:passowrd@proxy:80/";
Acquire::ftp::proxy "ftp://username:password@proxy:80/";
Acquire::https::proxy "https://username:password@proxy:80/";
username,password,proxy以及端口都要按照實際的修改。
這樣就可以更新系統(tǒng)了。
關(guān)鍵詞:Proxy
閱讀本文后您有什么感想? 已有 人給出評價!
- 1
- 5
- 1
- 4
- 4
- 2