windows wsl使用,安装ubuntu

windows wsl使用

  • 环境配置
    • windows 家庭版 打开 hyper11
  • 安装ubuntu
  • wsl 命令

环境配置

搜索 启动和关闭 Windows功能 打开下面组件
在这里插入图片描述
windows wsl使用,安装ubuntu_第1张图片

windows 家庭版 打开 hyper11

解决Windows11 Home 没有 Hyber-v

创建 hyber-v.cmd 并管理员身份执行

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

安装ubuntu

win11 安装 WSL2 在非 C 盘及配置

# win11 是默认支持 WSL2 的
wsl --set-default-version 2

先安装 WSL2 的内核更新包:适用于 x64 计算机的 WSL2 Linux 内核更新包

windows wsl使用,安装ubuntu_第2张图片

wsl 命令

# 查看安装的wsl
wsl -l -v

你可能感兴趣的:(ubuntu,linux)