vim /etc/profile.d/proxy.sh
点击(此处)折叠或打开
- proxy=192.168.1.36:808
- export ftp_proxy=ftp://$proxy
- export http_proxy=http://$proxy
- export https_proxy=http://$proxy
这个设置完,如果要生效,可以重新登录或者直接 source /etc/profile.d/proxy.sh
echo $http_proxy 查看是否生效
yum 的代理设置
vim /etc/yum.conf
点击(此处)折叠或打开
- export proxy=http://192.168.1.36:808
- export http_proxy=$proxy
git 的代理设置和取消
点击(此处)折叠或打开
- git config --global http.proxy http://192.168.1.5:808
- git config --global https.proxy https://192.168.1.5:808
- git config --global --unset http.proxy
- git config --global --unset https.proxy