有飞机场
终端 shell 是 zsh:
# where proxy
proxy() {
export http_proxy="http://127.0.0.1:端口号"
export https_proxy="http://127.0.0.1:端口号"
export all_proxy="socks5://127.0.0.1:端口号"
echo "HTTP Proxy on"
}
# where noproxy
noproxy() {
unset http_proxy
unset https_proxy
unset all_proxy
echo "HTTP Proxy off"
}
使用,终端输入proxy
~/.ssh/config 配置
Host github.com
HostName github.com
User git
IdentityFile 密钥
ProxyCommand nc -v -x 127.0.0.1:端口号 %h %p //这个是 socks5 的代理
chrome 插件
chrome 商店 搜索GitHub 加速 目前用的是这个
使用proxychains-ng
通过 ProxyChains-NG 实现终端下任意应用代理 - 奇妙的 Linux 世界
https://www.hi-linux.com/posts/48321.html
速度上基本上杠杆的~~