ubuntu系统,配置IP proxy
浏览器,设置,高级,open proxy setting,点击,就可以出现网络配置的界面Network
在http proxy那里写上ip地址,然后点击“apply system wide”
打开浏览器,就可以看到需要输入用户名与密码的验证,输入即可。
在站长工具或者百度里面搜索ip,就可以看到代理ip的地址了。
export https_proxy=username:password@ip:port
export http_proxy=username:password@ip:port
这种方式,自己验证了是无效的,不知道是我哪里配置不对,还是本来就是这种方式不行。
另外,对于有GUI界面的情况,还可以使用命令的方式来配置
gsettings list-schemas
gsettings list-keys org.gnome.system.proxy.https
gsettings get org.gnome.system.proxy.https host
gsettings get org.gnome.system.proxy.https port
gsettings set org.gnome.system.proxy.https host 'my.proxy.com'
gsettings set org.gnome.system.proxy.https port 8000
gsettings set org.gnome.system.proxy mode 'manual'
备注:这种方式,在有GUI的界面中,可以设置。我在无GUI的Ubuntu Server中,没有设置成功,根本就没有gsettings此命令。
参考博文 [1]How to change system proxy settings from the command line on Ubuntu desktophttp://ask.xmodulo.com/change-system-proxy-settings-command-line-ubuntu-desktop.html
原文链接:https://www.f2er.com/ubuntu/349945.html