linux – apt-get落后代理.用户名和密码中的特殊字符
作者:互联网
我想设置apt-get在我的ubuntu盒子上使用代理.我已成功配置synaptic以使用代理,因此我可以安装软件包,但我希望能够使用命令行.
我的工作代理需要用户名和密码,两者都有特殊字符.
在我的.bashrc中我有
export http_proxy="http://user@company:P@$$1234@10.20.30.40:80/"
但是,这不起作用.
我也试过逃避特殊字符,但这似乎也不起作用:
export http_proxy="http://user\@company:P\@\$\$1234@10.20.30.40:80/"
解决方法:
似乎是两件事的组合.我需要为特殊字符使用转义码,我需要在/etc/apt/apt.conf中添加条目. (据说,导出_proxy环境变量应该使apt-get工作,但我没有那么幸运.)
/etc/apt/apt.conf里面:
APT::Get::AllowUnauthenticated 1;
Acquire::http::proxy "http://user%40company:P%40%24%241234@10.20.30.40:80/";
Acquire::ftp::proxy "ftp://user%40company:P%40%24%241234@10.20.30.40:80/";
Acquire::https::proxy "https://user%40company:P%40%24%241234@10.20.30.40:80/";
.bashrc中:
export http_proxy="http://user%40company:P%40%24%241234@10.20.30.40:80/";
export ftp_proxy="ftp://user%40company:P%40%24%241234@10.20.30.40:80/";
export https_proxy="https://user%40company:P%40%24%241234@10.20.30.40:80/";
标签:linux,apt-get,ubuntu-10-04 来源: https://codeday.me/bug/20190613/1234245.html