cat /etc/resolv.conf 再通过环境变量 ALL_PROXY 配置代理: export ALL_PROXY="http://172.31.224.1:2425" 2425 是 Windows 上运行的代理客户端的端口,我用的是clash,要打开allow lan才行,allow lan的原理简单总结一下就是:在A设备的Clash上开一个代理的IP和端口,然后把这个IP和端口放到另一个设备B上,作为...
# This file was automatically generated by WSL. To stopautomatic generation of this file, add the following entry to /etc/wsl.conf:# [network]# generateResolvConf = falsenameserver 172.19.80.1 可以看到 DNS 服务器是172.19.80.1,通过环境变量ALL_PROXY配置代理: exportALL_PROXY="http://172.19.80.1...
export ALL_PROXY="http://$host_ip:7890" 脚本通过cat /etc/resolv.conf来获取 DNS 服务器,也就是 Windows 的 IP,再将其中的 IP 部分截取出来,加上代理客户端的端口(我的是 7890,可以根据自己实际情况修改),使用 export 写入环境变量中。 脚本也可以从这里下载.proxyrc,使用时只需要source .proxyrc就可以...
automatic generationofthisfile,add the following entry to/etc/wsl.conf:#[network]# generateResolvConf=falsenameserver172.19.80.1 可以看到 DNS 服务器是 172.19.80.1,通过环境变量 ALL_PROXY 配置代理: 代码语言:javascript 复制 exportALL_PROXY="http://172.19.80.1:7890" 7890 是 Windows 上运行的代理客户...
export all_proxy="socks5://$host_ip:port" 将代码中的port修改为你的代理软件的本地监听端口. 保存后重新加载.bashrc文件 source ~/.bashrc 这种方式电脑重启也不会丢失更新的设置。 还有一种按需启动代理的方式。 将以下代码添加到~/.bashrc文件的末尾。
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 1. 如果想要这些环境变量和设置每次启动终端都生效, 可以在~/.bashrc文件最下方添加上述内容 : ...
(demo) winse@DESKTOP-BR4MG38:~$ export ALL_PROXY=socks5://172.22.240.1:23333 HTTPS_PROXY=socks5://172.22.240.1:23333 HTTP_PROXY=socks5://172.22.240.1:23333 (demo) winse@DESKTOP-BR4MG38:~$ pip install git+https://github.com/huggingface/accelerate ...
export https_proxy=$ALL_PROXY # 设置git的代理 if [ "`git config --global --get https.proxy`" != "socks5://$windows_host:1080" ]; then git config --global https.proxy socks5://$windows_host:1080 fi # wcd # cd C:\\ 自动切换到 /mnt/c ...
export ALL_PROXY="http://127.0.0.1:8000" 1. 但是WSL2 基于 Hyper-V 运行,导致 Linux 子系统和 Windows 在网络上是两台各自独立的机器,从 Linux 子系统访问 Windows 首先需要找到 Windows 的 IP。 配置WSL2 访问 Windows 上的代理 有两个关键步骤: 1. WSL2 中配置的代理要指向 Windows 的 IP; 2. ...
proxy; \ unset ALL_PROXY;'简单来说,每次运行setp的时候也会修改 ~/.ssh/config文件里WSL的...