以下以CentOS为例演示WSL安装Docker Hub上的CentOS镜像
1. 打开 WSL
使用管理员权限打开 powershell,执行
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
或者在程序和功能选中 Windows-Subsystem-Linux。
2. 下载 Centos 7 的docker 镜像
可以参考 https://github.com/RoliSoft/WSL-Distribution-Switcher 来下载。
或者直接下载 下面的链接给出的镜像。
https://raw.githubusercontent.com/CentOS/sig-cloud-instance-images/CentOS-7-x86_64/docker/centos-7-x86_64-docker.tar.xz
3. 安装 chocolatey
3.1 使用choco安装
- 安装choco
参考 :https://chocolatey.org/install
使用管理员权限打开 powershell,执行
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) - 安装LxRunOffline
choco install lxrunoffline - 常用LxRunOffline命令
LxRunOffline.exe list
已经安装的wsl
LxRunOffline.exe install
安装wsl
LxRunOffline.exe export
备份wsl
LxRunOffline.exe run
启动一个wsl
3.2 下载LxRunOffline可执行文件安装
https://github.com/DDoSolitary/LxRunOffline
4. 使用 LxRunOffline 部署 CentOS 到WSL
LxRunOffline.exe install -n CentOS -d D:\Data\WSL\CentOS -f d:\Data\WSL\images\centos-7-x86_64-docker.tar.xz
其中 -d 后面是要安装到的目录,-f 是前面下载的镜像, -n 用来指定名称。
5. 启动Linux
5.1 使用LxRunOffline
然后使用 LxRunOffine 来开启 Centos
LxRunOffline run -n centos
5.2 使用WSL
使用 wsl -d CentOS
启动CentOS
-
wsl -l
查看已安装发行版本 -
wsl -d <DistributionName>
启动执行的发行版本 -
wsl -s <DistributionName>
将发行版本设置为默认值 -
wsl -t <DistributionName>
终止分发 -
wsl --unregister <DistributionName>
注销分发 -
wsl --help
显示帮助