彼岸的云 2011-03-28
在Ubuntu中,apt-get是一个必不可少的命令,但如果需要设置代理上网的环境中使用的话,还是需要做点调整的:
打开 /etc/apt/apt.conf (在最新的11.04版本中,此文件不存在,手动创建一个即可。)
加入一行:
Acquire::http::Proxy "http://username:password@proxyserver:port";
其中:
username: 代理服务器的用户名 (如果需要的话)
password: 代理服务器的密码 (如果需要的话)
proxyserver:代理服务器的IP地址或主机名称
port:端口
注意别忘记最后的分号
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common