美文网首页
ubuntu apt使用代理

ubuntu apt使用代理

作者: 酱油攻城狮 | 来源:发表于2017-12-27 15:07 被阅读0次

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:password@domain.com:port";
Acquire::https::Proxy "http://username:password@domain.com:port";

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

相关文章

网友评论

      本文标题:ubuntu apt使用代理

      本文链接:https://www.haomeiwen.com/subject/rkeugxtx.html