我已尝试使用所有方法永久清除代理设置。我检查了/ etc / environment,〜/ .bashrc,bashrc.bashrc并注释掉了/擦除了代理命令。还尝试取消设置http_proxy并取消设置https_proxy,但没有任何工作。 This is the terminal screen that I'm getting when I try the sudo apt-get update command 请建议永久删除代理设置的方法。提前谢谢。
答案 0 :(得分:1)
在HOME目录中查找文件/ etc / wgetrc或文件.wgetrc。可以在这些文件中设置代理。
答案 1 :(得分:0)
您可以在 askubuntu.com 上获得有关此类问题的更好答案。
无论如何只需将系统/网络中的方法下拉列表从manual
更改为none
即可。这将完成你的任务。执行此操作后,您可能需要重新启动计算机。
<强>更新强>
尝试使用null导出http_proxy。喜欢:$ export http_proxy=""
或$ export http_proxy=
同时检查/etc/profile.d文件夹内容。
答案 2 :(得分:0)
您需要编辑位于/ etc / environment的文件:
1)打开环境文件xhost +local: && sudo gedit /etc/environment
现在使用#
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games"
#http_proxy="http://172.16.2.30:8080/"
#https_proxy="https://172.16.2.30:8080/"
#ftp_proxy="ftp://172.16.2.30:8080/"
#socks_proxy="socks://172.16.2.30:8080/"
现在保存文件。这应解决问题
2)如果在执行1后也问题仍然是尝试从位于/etc/apt/的apt.conf文件中删除代理。首先使用xhost +local: && sudo gedit /etc/apt/apt.conf
打开文件。现在删除其内容并保存。< / p>
答案 3 :(得分:0)
尝试检查文件/etc/apt/apt.conf.d/90curtin-aptproxy
我在安装Ubuntu 18.04.2 LTS时在其中设置了代理设置。
希望这会有所帮助。