ubuntu git apt-get代理设置

服务器利用本机代理上网

本机:windows系统,安装一个代理软件  例如CCProxy.


服务器端配置:

git:

如果是 git clone http:// 或 git clone https:// 的话直接把代理服务器加到环境变量就可以了

编辑 .bashrc 

$ export http_proxy="http://username:[email protected].****:808/"
$ export https_proxy="http://username:[email protected].****:808/"


apt-get:

vi  /etc/apt/apt.conf

Acquire::http::Proxy "http://192.168.0.238:808";


你可能感兴趣的:(ubuntu git apt-get代理设置)