Para recomendações de inicialização dupla (no sistema Linux):
verifique o id do usuário proprietário da partição (pode ser feito em wsl posteriormente).
verifique os tamanhos das partições com lsblk, pois eles podem ter nomes totalmente diferentes no WSL, para identificar o criptografado posteriormente.
no Powershell
# identify disk
GET-CimInstance -query "SELECT * from Win32_DiskDrive"
# mount disk (DiskPath: \\.\PHYSICALDRIVE*)
wsl --mount <DiskPath> --bare
na WSL:
# 1
sudo apt-get update
sudo apt-get install cryptsetup
# 2 identify partition of interest
lsblk
# 3 Mount the encrypted partition
sudo cryptsetup open /dev/sdXn cryptpart
# 4 create mountpoint and mount
sudo mkdir /mnt/your-mount-point
sudo mount /dev/mapper/cryptpart /mnt/your-mount-point
# 5 check ownership of partition and of logged user
ls -l /mnt/your-mount-point/
id USERNAME
# if they match, proceed to read/modify files
# 7 Unmount
sudo umount /mnt/your-mount-point
sudo cryptsetup close cryptpart
se o ID que possui a partição montada for diferente do ID do usuário WSL registrado
# create a user with the id of
# the owner of /mnt/your-mount-point
EXISTING_UID=<id-of-owner-of-files-in-mount-point>
NEWUSER=<your_username> # name can be different from linux system name
useradd --create-home --shell /usr/bin/zsh --user-group --groups \
adm,dialout,cdrom,floppy,sudo,audio,dip,video,plugdev,netdev --uid \
$EXISTING_UID --password $(read -sp Password: pw ; echo $pw | openssl passwd \
-1 -stdin) $NEWUSER
# change default user, for vscode purposes, modify `/etc/wsl.conf`
# adding username when its id is not 1000
[user]
default=username-when-its-id-is-not-1000
Para recomendações de inicialização dupla (no sistema Linux):
lsblk
, pois eles podem ter nomes totalmente diferentes no WSL, para identificar o criptografado posteriormente.no Powershell
na WSL:
se o ID que possui a partição montada for diferente do ID do usuário WSL registrado