关闭子系统
wsl --shutdown
列出子系统
wsl.exe --list --all
导出子系统到文件
wsl --export Ubuntu D:\\wsl-ubuntu-22.04.tar
删除子系统
wsl --unregister Ubuntu
导入子系统到D:\\WSL2_Ubuntu
wsl --import Ubuntu D:\\WSL2_Ubuntu D:\\wsl-ubuntu-22.04.tar
启动子系统,系统默认用户为root,使用一般用户登录系统:
root@PC-202105142413:~# login
PC-202105142413 login: dengxm2024
Password:
Welcome to Ubuntu 22.04.3 LTS (GNU/Linux 5.15.153.1-microsoft-standard-WSL2 x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
Last login: Wed Jul 31 10:54:40 CST 2024 on pts/1
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.
dengxm2024@PC-202105142413:~$ pwd
/home/dengxm2024
迁移完成。
此方法过程比较简单, 但是在利用VS Code编辑WSL中的文件时会发现内置终端的默认用户仍然是`root`. 如果需要完全解决此问题, 需要编辑WSL中的`/etc/wsl.conf`配置文件, 在文件中补充以下内容:
[user]
default = <user-name>
保存配置并退出, 通过`wsl --shutdown`命令关闭WSL之后再启动即可更新配置.