从终端更改Ubuntu 12.04中的系统代理设置

时间:2012-04-19 18:54:53

标签: linux bash ubuntu configuration proxy

我一直在Ubuntu 12.04中工作,我试图在Bash脚本中实现的一件事是修改系统的代理设置。为了澄清,这将是一个脚本,用于设置我使用我需要的程序和包制作的每个VM。我可以通过系统设置手动查找和编辑代理设置,然后选择网络,但我的目的是自动执行此部分。

我迄今为止尝试过的代码是:

gconftool --set /system/http_proxy/host --type string *host*
gconftool --set /system/http_proxy/port --type int *port*
gconftool --set /system/http_proxy/use_http_proxy --type bool true
gconftool --set /system/http_proxy/use_same_proxy --type bool true
gconftool --set /system/proxy/mode                --type string manual

我也用gconftool-2尝试了上述内容。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:15)

您必须使用新的gsettings工具而不是旧的gconftool,并使用不同的密钥:

gsettings set org.gnome.system.proxy.socks host '127.0.0.1'
gsettings set org.gnome.system.proxy.socks port 3128
gsettings set org.gnome.system.proxy mode 'manual'

# to disable proxy:
# gsettings set org.gnome.system.proxy mode 'none'