1、yum代理设置
可以通过命令vi /etc/yum.conf在yum.conf下添加代理。
proxy=http://IP:PORT
2、wget代理设置
同上,通过命令vi /etc/wgetrc添加代理。
添加如下两行代码:
http_proxy=http://IP:PORT
ftp_proxy=http://IP:PORT
3、系统环境代理设置
通过vi ~/.bashrc 或者 vi /etc/profile 添加如下三行
export http_proxy=“http://IP:PORT”
export https_proxy=“http:// IP:PORT”
export ftp_proxy=$http_proxy