Restore from chroot
- Boot van usb (Op lenovo yoga fn/f2 om in bios te komen)
https://askubuntu.com/questions/63594/mount-encrypted-volumes-from-command-line sudo apt-get install cryptsetup
To decrypt the volume:
sudo cryptsetup luksOpen /dev/sda1 my_encrypted_volume
Now you can mount it as usual:
sudo mkdir /media/my_device sudo mount /dev/mapper/my_encrypted_volume /media/my_device
https://www.howtogeek.com/441534/how-to-use-the-chroot-command-on-linux/