WSL-installation

WSL 安装

一些命令:

1
2
3
4
5
wsl --shutdown ##关闭所有正在运行的WSL
wsl --terminate <DistributionName> ##关闭指定的WSL
wsl --list --all ##查看所有WSL的详细信息
wsl -d <DistriubutionName> ##启动迁移后的发行版,确认它能正常运行
wsl --unregister <DistributionName> ##注销指定的WSL

安装方式

  1. Microsoft Store 安装:直接去Microsoft Store搜索想要安装的WSL版本即可。

  2. 命令行安装:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    wsl --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桌面下的编辑器

  3. 将WSL迁移到其他盘:有两种命令行操作的方式:

    • wsl export 和 wsl import
      1
      2
      wsl --export <DistributionName> <FileName>
      wsl --import <DistributionName> <InstallLocation> <FileName>
      其中,<DistributionName> 是WSL的名称,<FileName> 是导出的文件名,<InstallLocation> 是安装位置。
    • wsl manage wsl --manage Ubuntu-24.04 --move D:\WSL\Ubuntu

参考链接:

1
2
3
4
5
6
7
8
https://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