Windows Subsystem for Linux (WSL) 是讓我們在 Windows 裡使用非 VM 方式可以直接與 Linux 底層溝通,以下簡單介紹使用 WSL 安裝 Ubuntu 。
在 Windows 10 上安裝適用於 Linux 的 Windows 子系統 (WSL)
使用方式 : wsl.exe [Argument] [Options...] [CommandLine]
❯ wsl -l -v
NAME STATE VERSION
* Ubuntu-20.04 Stopped 2
docker-desktop-data Running 2
docker-desktop Running 2
# 進入
❯ wsl -d Ubuntu-20.04
# 離開
yucheng@YuCheng-Laptop:/mnt/c/Users/YuCheng$ exit
logout
# 以 root 身分執行
❯ wsl -d Ubuntu-20.04 -u root
root@YuCheng:/mnt/c/Users/YuCheng# exit
logout
# 當在 CLI 介面輸入 bash 或 wsl 時,可以直接進入子系統
❯ wsl -s Ubuntu-20.04
# 新子系統安裝都會是 WSL 2
❯ wsl --set-default-version 2