一、为系统设置代理
编辑文件/etc/profile,增加如下两行
export http_proxy=:8080/
export https_proxy=:8080/
然后更新一下环境文件:
source /etc/profile
二、为yum配置代理
在/etc/后面添加以下内容:
如果代理不需要用户名密码认证:
proxy=:8080/
如果需要认证
proxy=:8080/
proxy_username=代理服务器用户名
proxy_password=代理服务器密码
然后更新一下环境文件:
#使用source后者source
source
source /etc/
三、为wget代理设置:
编辑文件为:/etc/wgetrc
添加下面两行:
http_proxy=:8080/
https_proxy=:8080/
然后更新一下环境文件:
#使用source后者source /etc/wgetrc
source
source /etc/wgetrc
四、网页上网
网页上网设置代理很简单,在firefox浏览器下 Edit–>>Preferences–>>Advanced–>>Network
在Connection下点击Settings,里面的manual proxy configuration里设置IP和PORT即可