- 使用 wsl --mount 新增對 LUKS 加密磁片的支援"
- 在 WSL 2 中掛接 Linux 磁片
- How to mount a LUKS encrypted drive in Windows
- wsl does not have --mount option. So how do I mount a drive using wsl?
- Mount a Linux disk in WSL 2
- 在 WSL 2 中掛接 Linux 磁片
要 windows 11,先在 powershell 下把 volume mount bare 給 wsl,這樣wsl 就看得到partition/disk 了。
然後在 wsl 下用一般 mount command 來 mount (所以也可以用 cryptsetup..)
依照 ref:How to mount a LUKS encrypted drive in Windows:
在 powershell :
C:\Users\miguel> GET-WMIOBJECT -query "SELECT * from Win32_DiskDrive"列出所有的 disk, partition.(的name),然後選要給 wsl 的,做:
PS C:\Users\miguel> wsl --mount \\.\PHYSICALDRIVE1 --bare然後到 wsl 的 linux(debian, ubuntu) 下:
$ lsblk就可以看到剛剛給 wsl 的 disk 了,之後就用一般 linux 的 command:
$ sudo cryptsetup luksOpen /dev/sdc1 TOSHIBA2TB $ sudo mount /dev/mapper/TOSHIBA2TB /mnt/TOSHIBA2TB/
沒有留言:
張貼留言