YUM代理設置bash
編輯/etc/yum.conf,在最後加入dom
# Proxyide
proxy=http://username:password@proxy_ip:port/代理
也能夠使用proxy_username和proxy_password來配置代理的用戶名和密碼ip
這樣的配置完成後,全部的用戶在使用yum時,都會使用代理,能夠說是全局代理。get
Wget的代理設置it
編輯/etc/wgetrc,在最後加入io
# Proxyclass
http_proxy=http://username:password@proxy_ip:port/proxy_pass
https_proxy=https://username:password@proxy_ip:port/
ftp_proxy=http://username:password@proxy_ip:port/
系統全局代理
vi /etc/environment
http_proxy="http://proxy.com:8000"
https_proxy="https://proxy.com:8000"
# for proxy exception
no_proxy="127.0.0.1, localhost, *.cnn.com, 192.168.1.10, domain.com:8080"
或者 vi /etc/profile.d/proxy.sh
export http_proxy="http://proxy.com:8000"
export https_proxy="https://proxy.com:8000"
# for proxy exception
export no_proxy="127.0.0.1, localhost, *.cnn.com, 192.168.1.10, domain.com:8080"
若是須要爲某個用戶設置一個系統級的代理,能夠在~/.bash_profile中設置:
http_proxy="http://username:password@proxy_ip:port"
https_proxy="https://username:password@proxy_ip:port"
export http_proxy
上面的設置只對某個用戶生效,若是要對全部系統用戶生效,寫在/etc/profile中就能夠了。