1.安装Linux 子系统
注意: 一下子全勾选之后,然后重启安装, 可能存在安装失败的情况, 此时 一个一个勾选重启安装。
2.安装Linux 子系统
在windows 应用商店下载一个ubuntu 系统。
可能有点慢,耐心等待。
3.启动ubuntu 系统
注意 如果启动失败, 升级下wsl 的版本,执行下安装
https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi
4.配置系统
1. 设置默认root 用户登录
#1. 修改root 密码
sudo passwd root
# 2. 设置为 默认 root 登录
#查看 ubuntu2204.exe 指令位置: 一般在这里 $env:APPDATA/../Local/Microsoft/WindowsApps
ubuntu2204.exe config --default-user root
2.设置sshd 服务
# 安装ssh
sudo apt-get install openssh-server openssh-client
# 第一次可能需要设置sshkey这样启动
ssh-keygen -A
# 启动ssh服务
service ssh start 或者执行 /etc/init.d/ssh start
# 配置允许root 登录
打开ssh配置文件: vi /etc/ssh/sshd_config
添加: PermitRootLogin yes 允许root用户登录
PasswordAuthentication yes 设置为yes允许密码验证
3. 修改主机名称
5.配置固定IP
-
配置DNS 地址 (vim /etc/resolf.conf)
1. 创建一个启动脚本ubuntu.bat 固定IP 为 192.168.50.100
@echo off
wsl -d Ubuntu-22.04 --shutdown
REM 把这里理解为一个开机启动脚本就行
REM ssh若是需要的话;包括数据库等等
wsl -d Ubuntu-22.04 -u root service ssh start
wsl -d Ubuntu-22.04 -u root echo "nameserver 114.114.114.114" > /etc/resolv.conf
wsl -d Ubuntu-22.04 -u root ip addr del $(ip addr show eth0 ^| grep 'inet\b' ^| awk '{print $2}' ^| head -n 1) dev eth0
wsl -d Ubuntu-22.04 -u root ip addr add 192.168.50.100/24 broadcast 192.168.50.255 dev eth0
wsl -d Ubuntu-22.04 -u root ip route add 0.0.0.0/0 via 192.168.50.1 dev eth0
powershell -c "Get-NetAdapter 'vEthernet (WSL)' | Get-NetIPAddress | Remove-NetIPAddress -Confirm:$False; New-NetIPAddress -IPAddress 192.168.50.1 -PrefixLength 24 -InterfaceAlias 'vEthernet (WSL)'; Get-NetNat | ? Name -Eq WSLNat | Remove-NetNat -Confirm:$False; New-NetNat -Name WSLNat -InternalIPInterfaceAddressPrefix 192.168.50.0/24;"
REM 启动对应Linux系统,我这里是使用windows terminal,可自行替换为自己的,或者删除以其它方式启动
wt -p Ubuntu-22.04
2. 管理员执行脚本 ubuntu.bat 启动系统 效果如下
6.安装 rust 开发环境
1. 下载安装
# 下载安装脚本
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > sh.rustup.rs
# 可以选择把安装源改到国内其中一个镜像,方便加快速度
export RUSTUP_DIST_SERVER=https://mirrors.ustc.edu.cn/rust-static
# 开始安装
$ ./sh.rustup.rs
.....
.....
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
> 1
2.配置环境变量 vim /etc/profile
3.查看版本
6.安装vscode ,并配置插件
1. 创建工程
# 创建一个工程
cargo new hello-rust
# 打开vscode
cd hello-rust && code .
2. 安装插件