Chinaunix首页 | 论坛 | 博客
  • 博客访问: 535773
  • 博文数量: 80
  • 博客积分: 1496
  • 博客等级: 上尉
  • 技术积分: 1292
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-18 11:24
个人简介

IT码农一个~

文章分类

全部博文(80)

文章存档

2020年(3)

2019年(7)

2017年(1)

2016年(2)

2015年(2)

2014年(26)

2013年(26)

2012年(2)

2011年(1)

2010年(1)

2008年(9)

我的朋友

分类: LINUX

2020-08-19 11:52:03

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

点击(此处)折叠或打开

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

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

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

点击(此处)折叠或打开

  1. export proxy=
  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



阅读(5097) | 评论(0) | 转发(0) |
0

上一篇:linux 设置coredump 大小和路径

下一篇:没有了

给主人留下些什么吧!~~