互联网代理设置在终端中不起作用。如何配置它们?

互联网代理设置在终端中不起作用。如何配置它们?

在我们的大学里,我们通过代理设置访问互联网,代理设置包括地址、端口、用户名和密码。这些设置在 Firefox 中运行良好,但在下载和更新的终端中却不行。我已经相应地编辑了 apt.conf 文件和 bash.bashrc。

apt.conf 中

Acquire::https::proxy "https://edcguest:[email protected]:3128/";  
Acquire::http::proxy "http://edcguest:[email protected]:3128/";  
Acquire::ftp::proxy "ftp://edcguest:[email protected]:3128/";  
Acquire::socks::proxy "socks://edcguest:[email protected]:3128/";

bash.bashrc 最后添加

export http_proxy="http://edcguest:[email protected]:3128"  

export ftp_proxy="http://edcguest:[email protected]:3128"

请详细说明如何解决该问题。

答案1

这是一个名为 UBPROXY 的 Python 程序的链接。下面给出了设置代理身份验证的步骤。

http://code.google.com/p/ubproxy/downloads/detail?name=ubproxy

下载此程序。然后打开终端并运行以下命令:

cd ~/Downloads

(假设您的下载存在于此目录中)

chmod +x ubproxy
sudo ./ubproxy

相关内容