1、《[debian_ubuntu 配置 sock/socks5h/http/https 代理](https://www.cnblogs.com/yucloud/p/ubuntu_set_proxy.html)》 2、《[记一次 Visual Studio 启动 WSL 远程调试的方法](https://www.cnblogs.com/ACDIV/p/17369166.html)》 3、《[[VS Code] 附加到 Docker 容器中调试 .NET 程序](https://w...
unset http_proxy; \ unset all_proxy; \ unset ALL_PROXY;' 注意https_proxy处应为http://${hostip}:7890,否则会导致curl时OpenSSL SSL_connect: SSL_ERROR_SYSCALL的问题。然后,在终端运行命令setproxy就可以为当前终端设置网络了。 相关配置: 此时可以用wget测试。如果克隆https链接报错: GnuTLS recv error ...
git config –global http.proxyhttp://proxy_host:proxy_port git config –global https.proxyhttps://proxy_host:proxy_port “` 其中,`proxy_host:proxy_port`替换为你实际使用的代理服务器地址和端口号。如果代理服务器需要用户名和密码验证,可以使用以下命令进行配置: “` git config –global http.proxyht...
export http_proxy=http://127.0.0.1:7890 export https_proxy=\$http_proxy echo -e "终端代理已开启。" } function proxy_off(){ unset http_proxy https_proxy echo -e "终端代理已关闭。" } EOF source~/.bash_profile proxy_on 1|0注意!!!要把上面127.0.0.1换成刚才查的IP(172.21.32.1),以图为...
非常感谢原作者 https://www.cnblogs.com/tuilk/p/16287472.html 在Windows下配置WSL2代理 第一步 打开猫猫中的允许互联网连接 第二步 打开Windows Defender 防火墙, 选择允许应用或功能通过 Windows Defender 防火墙 第三步 配置WSL2代理 新建proxy.sh文件,内容如下: ...
export http_proxy=localhost:20172 export https_proxy=localhost:20172 # 上面是临时修改,永久修改可以吧这个加入/etc/profile 设置好后本地windows也能使用这个代理,完美解决wsl命令行和windows同时需要上google、github等外网的问题 3 其他 命令行美化 sudo apt install zsh ...
-> % source ~/proxy.sh set 检测是否成功 w3m google.com 出现下图则成功 image.png 附wsl 使用代理: vim ~/.zshrc 追加下面代码 startProxy(){ export https_proxy="http://127.0.0.1:41091"; export http_proxy="http://127.0.0.1:41091"; ...
不必占用C盘空间(见Migrate_WSL2);WSL 可以走 NAT,依此打个http_proxy和 https_proxy 挂上梯子。
export HTTP_PROXY=$ALL_PROXY export http_proxy=$ALL_PROXY export HTTPS_PROXY=$ALL_PROXY export https_proxy=$ALL_PROXY 1. 2. 3. 4. 5. 6. git也可以设置为使用代理 : git config --global proxy.https socks5://$windows_host:10808
exporthttp_proxy="http://[从resolv.conf找到的IP地址]:7890"exporthttps_proxy="http://[从resolv....