查詢線上支援版本名稱
wsl.exe --list --online
win11 開啟Microsoft Store
搜尋關鍵字Ubuntu,選擇安裝Ubuntu 22.04.3 LTS
顯示目前安裝清單及版本
> wsl.exe --list -v
修改預設
> wsl --set-default Ubuntu-22.04
啟動wsl
>wsl
確認登入帳號名稱
>whoami
如果找不到Microsoft Store也可以使用wsl來安裝Ubuntu
> wsl --install
顯示目前安裝清單及版本
> wsl.exe --list -v
其中紅色Ubuntu標籤為剛才呼叫wsl --install得到的實體
如何註銷(刪除)Ubuntu實體?
> wsl --unregister Ubuntu
如何安裝其他版本Ubuntu?
列出目前線上版本清單
> wsl --list --online
安裝指定版本,例如舊版Ubuntu-20.04
> wsl --install -d Ubuntu-20.04
下載後自動安裝並新增使用者帳號和密碼,
完成後如下Welcome to Ubuntu 20.04.6 LTS
再次顯示目前已經安裝好的清單
更新應用程式清單(管理者權限)
> sudo apt update
完整安裝更新清單
> sudo apt full-upgrade
確認網路
> ping google.com
> sudo apt install neofetch
> neofetch
安裝x11應用程式
> sudo apt install x11-apps
呼叫 xeyes
> xeyes
背景執行xeyes
> xeyes &
呼叫計算機
> xcalc
背景執行計算機
> xcalc &
win11下方會出現一隻企鵝圖案,表示執行linux應用程式
參考資料
WSL2 中連接 USB 的疑難雜症
WSL2中加载USB相机
Python:Visual Studio Code 在 WSL 中進行開發
Ubuntu Desktop/GUI Apps on WSL | Updated Guide
Windows 安裝 WSL + Docker Desktop 完整教學
OpenCV调用cv2.imshow显示错误 “The function is not implemented. Rebuild the library with Windows”的解决办法
留言列表