我一直在 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
. 任何帮助,将不胜感激。