ubuntu apt使用代理

1、ubuntu使用代理配置

编辑 vim /etc/apt/apt.conf:
无用户名密码:

Acquire::http::Proxy "http://domain.com:port";
Acquire::https::Proxy "http://domain.com:port";

有用户名密码:

Acquire::http::Proxy "http://username:[email protected]:port";
Acquire::https::Proxy "http://username:[email protected]:port";

注意:每行配置后面有一个分号(;)

你可能感兴趣的:(ubuntu apt使用代理)