ubuntu 给终端设置代理
首先你需要一个可用的代理,打开它,使用全局模式。然后,打开一个终端,执行:
gedit ~/.bashrc
可以打开bash环境变量管理文件,在里面任意位置添加上如下两行代码:
export http_proxy='http://localhost:12345'
export https_proxy='http://localhost:12345'
其中的12345是代理的端口号,需要依据自己的端口号对应修改。添加好之后保存,然后在终端执行:
source ~/.bashrc
使得修改生效。
执行如下命令进行测试:
wget www.google.com
输出如下:
--2021-11-16 13:00:50-- [http://www.google.com/](http://www.google.com/)
正在解析主机 localhost (localhost)... 127.0.0.1
正在连接 localhost (localhost)|127.0.0.1|:12345... 已连接。
已发出 Proxy 请求,正在等待回应... 200 OK
长度: 未指定 [text/html]
正在保存至: “index.html”
index.html [ <=> ] 14.91K --.-KB/s 用时 0s
2021-11-16 13:00:51 (116 MB/s) - “index.html” 已保存 [15270]
可以看到第三行的已连接以及第四行的OK,则表明终端的代理已经成功开启了。
原文链接:https://blog.csdn.net/weixin_44120025/article/details/121353813