目前WLS2已经支持挂载读写Linux分区,可以无需借助Ext2fsd等工具让Windows下读写Linux分区更加方便,具体操作如下。
1.开始菜单右键点击设置-搜索开发者设置->打开开发人员模式
2.控制面板-程序
安装
- 适用于linux得windows子系统
- hyper-v支持
3.bios打开虚拟化支持,这个根据自己的电脑BIOS版本自行设置。
- 使用PowerShell 输入如下命令
1
2
3wsl -l -v
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
5.安装Linux 内核更新包:
下载地址,下载完成安装即可
6.设置WSL 2 为默认版本:
1 | wsl --set-default-version 2 |
7.安装一个发行版
1 | wsl --list --online |
8.识别磁盘:列出 Windows 中的可用磁盘。
1 | GET-CimInstance -query "SELECT * from Win32_DiskDrive" |
9.挂载磁盘
1 | wsl --mount <DeviceId> --bare |
10.打开资源管理器访问
1 | \\wsl.localhost\Ubuntu\mnt\wsl\PHYSICALDRIVE1p1 |