ubuntu12.04代理设置方法

发布时间:2019-12-10编辑:脚本学堂
本文介绍了ubuntu12.04系统中代理设置的相关内容,有需要的朋友参考下。

安装了ubuntu的最新LTS版本 12.04,需要重新下载android的源码,由于公司使用了代理服务器,在网络配置方面方面遭遇了各种问题,系统动不动就弹出407 Proxy Authentication required。1.apt-get 设置代理

在目录/etc/apt中找到apt.conf文件,按照如下方式设置即可,例如用户名为sgj, 密码为shiguojun
 

Acquire::http::proxy "http://sgj:shiguojun@10.0.2.254:8080/";

2.repo 设置代理。
查了好半天,还是在google的说明里面找到了方法。
Troubleshooting network issues

When downloading from behind a proxy (which is common in some corporate environments), it might be necessary to explicitly specify the proxy that is then used by repo:
 

$ export HTTP_PROXY=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>
$ export HTTPS_PROXY=http://<proxy_user_id>:<proxy_password>@<proxy_server>:<proxy_port>

HTTP_PROXY是设置http代理,HTTPS_PROXY是设置https代理。

等着repo sync成功即可了~
验证:
 

sudo apt-get update

如此,就完成了ubuntu12.04代理设置,初学者参考,高手勿笑。