ubutun终端设置代理记录
Posted 不知名的小咸鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubutun终端设置代理记录相关的知识,希望对你有一定的参考价值。
前提
安装并,配置好shadowsocks
设置系统代理
进入系统设置,这里跟终端没有什么关系。
这里要查看shadowsocks设置:
然后将系统代理设置为如下:
设置终端代理
当前终端有效
export https_proxy="https://127.0.0.1:1080"
export http_proxy="http://127.0.0.1:1080"
export ALL_PROXY=socks5://127.0.0.1:1080
为了使得全局有效,将其添加到bashrc
sudo gedit ~/.bashrc
export https_proxy="https://127.0.0.1:1080"
export http_proxy="http://127.0.0.1:1080"
export ALL_PROXY=socks5://127.0.0.1:1080
然后使得其生效:
source ~/.bashrc
测试
wget https://www.google.com
--2021-06-06 15:08:05-- https://www.google.com/
Connecting to 127.0.0.1:1080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html.1’
index.html.1 [ <=> ] 13.79K --.-KB/s in 0s
2021-06-06 15:08:06 (102 MB/s) - ‘index.html.1’ saved [14122]
在这里要注意要将shadowsocks设置为https,本应该socks5就可以的才对,这是有点不理解的地方
以上是关于ubutun终端设置代理记录的主要内容,如果未能解决你的问题,请参考以下文章