1.全局的代理设置:
vi /etc/profile
添加下面内容
http_proxy = http://username:[email protected]:8080/
ftp_proxy = http://username:[email protected]:8080/
export http_proxy
export ftp_proxy
2.yum的代理设置:
vi /etc/yum.conf
添加下面内容
proxy = http://username:[email protected]:8080/
*户名和密码如果不需要的话可以不填写
3.Wget的代理设置:
vi /etc/wgetrc
# Proxy
http_proxy=http://username:[email protected]_ip:port/
ftp_proxy=http://username:[email protected]_ip:port/
*重启系统
时间: 2024-10-11 13:14:54