From 16bf7bcbcd9f30e46b8755e2c06e03c6e6d40fff Mon Sep 17 00:00:00 2001 From: tiyn Date: Wed, 4 Jan 2023 15:51:26 +0100 Subject: [PATCH] dislocker: added bootable ntfs usage --- wiki/linux/dislocker.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/wiki/linux/dislocker.md b/wiki/linux/dislocker.md index 3724a26..ffa647a 100644 --- a/wiki/linux/dislocker.md +++ b/wiki/linux/dislocker.md @@ -19,15 +19,19 @@ The device which holds the windows partition is assumed to be calles The following command mounts the `dislocker` file to `/mnt/bitlocker`. Make sure to replace the password in the following command. There is no gap between the `-u` and the password: -`sudo dislocker /dev/sdc1 -u -- /mnt/bitlocker` +`sudo dislocker /dev/sdc1 -u -- /mnt/bitlocker`. Alternatively a recovery key can be used: -`sudo dislocker /dev/sdc1 -p -- /mnt/bitlocker` +`sudo dislocker /dev/sdc1 -p -- /mnt/bitlocker`. -Afterwards the `dislocker-file` can be mounted to the `/mnt/windows` directory. -`sudo mount -o loop /mnt/bitlocker/dislocker-file /mnt/windows` +Afterwards the `dislocker-file` can be mounted to the `/mnt/windows` directory: +`sudo mount -o loop /mnt/bitlocker/dislocker-file /mnt/windows`. +It is possible that the partition uses the NTFS which requires the `ntfs-3g` +package to be installed to work with linux and specified in the command: +`sudo mount -t ntfs-3g -o loop /mnt/bitlocker/dislocker-file /mnt/windows`. +If the partition to mount is bootable or contains a windows system the +hibernation and fast boot have to be disabled to mount the partition with write +access. Following these commands the windows partition can be found mounted on `/mnt/windows`. -It is possible that the partition uses the NTFS which requires the `ntfs-3g` -package to be installed to work with linux.