你好,我需要了解如何在 xubuntu 10.10 中启用系统范围的代理
答案1
虽然其他答案都很好(对于终端/bash提示),但我认为添加这些的正确位置是/etc/environment
。
使用sudo
或者gksu
然后添加:
http_proxy="http://user:password@proxyserver:port"
https_proxy="http://user:password@proxyserver:port"
ftp_proxy="http://user:password@proxyserver:port"
非常相似,但对于那些从一个术语内运行所有内容的人来说,其他答案会给出结果,但对于那些在 GUI 领域的人来说,最好将上述行添加到环境文件中以实现完全正确的系统范围使用。
答案2
将以下行添加到您的 ~/.bashrc 文件:
export http_proxy="http://user:password@proxyserver:port"
export https_proxy="http://user:password@proxyserver:port"
export ftp_proxy="http://user:password@proxyserver:port"
答案3
有一个名为 UbProxy 的图形工具,它通过图形界面 (GUI) 设置整个系统代理。对我来说唯一的问题是,我必须注销我的用户并再次登录才能加载配置。使用起来非常简单。 https://code.google.com/p/ubproxy/