我有windown 10企业版,我发现此版本没有Windows存储 如何使用ubuntu安装linux子系统(WSL)?
答案 0 :(得分:0)
找到了使用powershell的解决方案!
参考
PowerShell作为管理员
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
cd c:\
Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile Ubuntu.appx -UseBasicParsing
Rename-Item ./Ubuntu.appx ./Ubuntu.zip
Expand-Archive ./Ubuntu.zip ./Ubuntu
cd ./Ubuntu
.\ubuntu1604.exe
$userenv = [System.Environment]::GetEnvironmentVariable("Path", "User")
[System.Environment]::SetEnvironmentVariable("PATH", $userenv + ";C:\Ubuntu", "User")