有飞机场
终端 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
速度上基本上杠杆的~~
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.