Skip to content
David your friend edited this page Jul 18, 2017 · 1 revision

Mounting Decrypted Volume on Ubuntu

Check your disks, and make note of the device you will be using. (example:/dev/sdc1)
sudo fdisk -l

Now, to decrypt your device using the BitLocker password, use the following command but replace "sdX" with the device you selected from the previous step.
sudo dislocker -v -V /dev/sdX -u -- /mnt/tmp

Mount the decrypted file/volume (this will mount as read/write).
sudo mount -o loop,rw /mnt/tmp/dislocker-file /media/dislocker/

Clone this wiki locally