WSL-installation
WSL 安装
一些命令: 1
2
3
4
5wsl --shutdown ##关闭所有正在运行的WSL
wsl --terminate <DistributionName> ##关闭指定的WSL
wsl --list --all ##查看所有WSL的详细信息
wsl -d <DistriubutionName> ##启动迁移后的发行版,确认它能正常运行
wsl --unregister <DistributionName> ##注销指定的WSL
安装方式
Microsoft Store 安装:直接去Microsoft Store搜索想要安装的WSL版本即可。
命令行安装:
1
2
3
4
5
6
7
8
9wsl --set-default-version 2
wsl --update
wsl --list --online # 列出所有可安装的linux版本
wsl --install -d Ubuntu-20.04 # 安装Ubuntu-20.04
sudo apt update
sudo apt upgrade
sudo apt install gedit # gnome桌面下的编辑器将WSL迁移到其他盘:有两种命令行操作的方式:
- wsl export 和 wsl import 其中,
1
2wsl --export <DistributionName> <FileName>
wsl --import <DistributionName> <InstallLocation> <FileName><DistributionName>
是WSL的名称,<FileName>
是导出的文件名,<InstallLocation>
是安装位置。 - wsl manage
wsl --manage Ubuntu-24.04 --move D:\WSL\Ubuntu
- wsl export 和 wsl import
参考链接: 1
2
3
4
5
6
7
8https://www.sysgeek.cn/move-wsl-distros-windows/
https://learn.microsoft.com/zh-cn/windows/wsl/basic-commands
https://blog.jikun.dev/other/wsl
https://learn.microsoft.com/zh-cn/windows/wsl/basic-commands