Restore from chroot: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m 1 revision imported |
(No difference)
| |
Latest revision as of 14:34, 5 January 2025
- 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/