Mac 有终端代理,那 windows 也应该有才对,但是windows 要个毛的代理呀,小猫一配置,全局模式就可以了。
但是如果是 子系统WSL呢,这个逼是一套独立的系统,所以要让他也和Windows一样,可以麻溜的 干活,得让他使用他爹的链路。
可以先看下 Mac 终端代理
打开小猫,General
===>Allow LAN
开启
然后点Allow LAN
旁边的小图标,可以看到WSL的 一些代理的 Address和 其它信息。
但是, 动态的IP ,不可能每次去修改。所在我们在MAC 代理的脚本上 ,做个小修改,动态获取IP即可,像这样 修改 ~/.bash_profile
function proxy_off(){
unset http_proxy
unset https_proxy
unset ftp_proxy
unset rsync_proxy
echo -e "已关闭代理"
}
function proxy_on() {
export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
host_ip=$(cat /etc/resolv.conf |grep "nameserver" |cut -f 2 -d " ")
export http_proxy="http://$host_ip:7890"
export https_proxy=$http_proxy
export ftp_proxy=$http_proxy
export rsync_proxy=$http_proxy
export HTTP_PROXY=$http_proxy
export HTTPS_PROXY=$http_proxy
export FTP_PROXY=$http_proxy
export RSYNC_PROXY=$http_proxy
echo -e "已开启代理"
}
最后
代码语言:javascript复制# 环境变量生效
source ~/.bash_profile
# 打开 代理
proxy_on
# 关闭 代理
proxy_on
这下 WSL 起飞了,apt-get install 各种, 都能顺利的安装。专治各种不服。