apt-get proxy 设置

前端之家收集整理的这篇文章主要介绍了apt-get proxy 设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@最近,因为要研究一个C语言编写的项目Aravis,不得不起用快半年不用的linux系统,而公司是通过一台proxy与外界联系的,但回到家里,又不用proxy;

@H_403_0@proxy切换较频繁,网上的中文资料很多,但大多很片面,混淆自己的视听,所以写个博文记下,方便自己以后浏览。

@H_403_0@设置方法有三种(一般上只需要其中一种就好,如果用第二种方法,第一种方法和第三种方法都不会起作用):

@H_403_0@1.这是较常用的方法修改/etc/apt/apt.conf,加入以下内容

@H_403_0@Acquire::http::Proxy "http://wilson_ke:password@10.0.0.1:63333";
Acquire::https::Proxy "http://wilson_ke:password@10.0.0.1:63333";
Acquire::ftp::Proxy "http://wilson_ke:password@10.0.0.1:63333";

@H_403_0@

@H_403_0@2.修改/etc/bash.bashrc,加入以下内容:

@H_403_0@export http_proxy=http://wilson_ke:password@10.0.0.1:63333
export https_proxy=http://wilson_ke:password@10.0.0.1:63333
export ftp_proxy=http://wilson_ke:password@10.0.0.1:63333

@H_403_0@

@H_403_0@3.修改/etc/environment,加入以下内容:

@H_403_0@http_proxy=http://wilson_ke:password@10.0.0.1:63333
https_proxy=http://wilson_ke:password@10.0.0.1:63333
ftp_proxy=http://wilson_ke:password@10.0.0.1:63333

@H_403_0@

@H_403_0@4.修改~/.bashrc

@H_403_0@http_proxy=http://wilson_ke:password@10.0.0.1:63333
https_proxy=http://wilson_ke:password@10.0.0.1:63333
ftp_proxy=http://wilson_ke:password@10.0.0.1:63333

@H_403_0@

@H_403_0@

@H_403_0@

@H_403_0@



猜你在找的Ubuntu相关文章