系统全局的代理设置:
vim /etc/profile.d/proxy.sh

点击(此处)折叠或打开

  1. proxy=192.168.1.36:808
  2. export ftp_proxy=ftp://$proxy
  3. export http_proxy=http://$proxy
  4. export https_proxy=http://$proxy

这个设置完,如果要生效,可以重新登录或者直接 source /etc/profile.d/proxy.sh 
echo $http_proxy 查看是否生效

yum 的代理设置
vim /etc/yum.conf

点击(此处)折叠或打开

  1. export proxy=http://192.168.1.36:808
  2. export http_proxy=$proxy

git 的代理设置和取消 

点击(此处)折叠或打开

  1. git config --global http.proxy http://192.168.1.5:808
  2. git config --global https.proxy https://192.168.1.5:808
  3. git config --global --unset http.proxy
  4. git config --global --unset https.proxy



08-28 05:19