ubuntu 中的代理身份验证错误

ubuntu 中的代理身份验证错误

我输入了命令

sudo gedit /etc/bash.bashrc 

并输入导出语句为

export http_proxy="username: password@proxyhost:port"

但保存后它给出了警告信息

set document meta data failed 
gedit spell language not supported
gedit encoding not supported
gedit position not supported

当我尝试 apt-get update 时它仍然显示代理身份验证错误

答案1

您可以尝试安装 cntlm 来自动处理您的代理设置:

supo apt install cntlm
sudo nano /etc/cntlm.conf 

从这里编辑以下字段以提供您的凭据:

Username username
Domain proxydomain
Paswword pwd 

[...]

Proxy proxyaddress:3128
Noproxy localhost, 127.0.0.*, 10.*, 192.168.*
Listen proxyport

相关内容