安装WSL
管理员权限打开powershell
1 | wsl --install |
默认安装WSL 2 + Ubuntu 20.04,详见安装 WSL | Microsoft Docs
更新升级apt
1 | sudo apt update && sudo apt upgrade |
使用Windows文件管理器打开当前Ubuntu目录
1 | explorer.exe . |
使用vscode打开当前当前Ubuntu目录
1 | code . |
基本命令
==git等工具及语言的安装同双系统Ubuntu的安装==
配置WSL使用Windows代理
-
在Windows端Clash中开启
Allow LAN
-
在Ubuntu的 bashrc 中添加
1
2
3export hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*')
export https_proxy="http://${hostip}:7890"
export http_proxy="http://${hostip}:7890" -
测试
1
curl google.com