物理机git clone
时跑满带宽,但是 WSL2 里只有 10-100kb 左右。尝试过代理仍然效果甚微。每次git clone
或者push
时都会卡顿很久会有反应。
搜了一圈没有找到解决方法,来问问 V 友们
# ~/.bashrc
export windows_host=`cat /etc/resolv.conf|grep nameserver|awk '{print $2}'`
export ALL_PROXY=socks5://$windows_host:7890
export HTTP_PROXY=$ALL_PROXY
export http_proxy=$ALL_PROXY
export HTTPS_PROXY=$ALL_PROXY
export https_proxy=$ALL_PROXY
# ~/.gitconfig
[proxy]
https = socks5://172.28.144.1:7890
http = http://172.28.144.1:7890
1
wanjiawei0755 2022-11-30 23:50:18 +08:00 via Android
直接上游代理,把梯子挂路由器上
|
2
Knuth 2022-12-01 00:03:40 +08:00 via iPhone
ssh 代理
|
3
thedrwu 2022-12-01 00:13:30 +08:00 via Android
先排除 filesystem 的因素?
|
4
SpecterShell 2022-12-01 00:17:47 +08:00
gitconfig 写反了,是 http.proxy ,不是 proxy.http
|
5
SpecterShell 2022-12-01 00:18:30 +08:00 1
|
6
flyn 2022-12-01 00:37:51 +08:00 1
如果只是临时使用的话,HTTP 地址前面加 https://ghproxy.com/ 也 OK
|
7
Xusually 2022-12-01 00:37:54 +08:00
首先排除文件系统性能瓶颈,WSL2 的老问题
|
8
flyn 2022-12-01 00:39:36 +08:00
不好意思没看清楚 我还以为从 Github 上拉呢
|
9
dcsuibian 2022-12-01 00:41:53 +08:00
ssh 协议还是 http 协议?
|
10
echo314 2022-12-01 00:56:50 +08:00 1
|
12
guaiZhang OP @wanjiawei0755 glados 路由器代理要升级账户。😣但是我总觉得是 wsl2 什么地方需要配置,物理机不加代理都能跑满带宽。
|