1、YUM添加代理服务器:
1 | [root@localhost /] # vim /etc/yum.conf |
添加如下项目:
proxy=http://172.16.1.188:8888/
2、WGET添加代理服务器:
1 | [root@localhost /] # vim /etc/wgetrc |
添加如下项目:
https_proxy = http://172.16.1.188:8888/
http_proxy = http://172.16.1.188:8888/
ftp_proxy = http://172.16.1.188:8888/
3、添加全局代理:
1 2 | [root@localhost /] # export http_proxy=http://172.16.1.188:8888 [root@localhost /] # export https_proxy=http://172.16.1.188:8888 |
4、取消全局代理:
1 2 | [root@localhost /] # unset http_proxy [root@localhost /] # unset https_proxy |
转载:http://www.cnblogs.com/configure/p/6112900.html