Step 3: Find the partition encrypted with BitLocker
On a Terminal window, run the fdisk command below to list all available partitions on the computer:
sudo fdisk -l
Then find and note the device name with the partition encrypted with BitLocker to use in the next step.
The next step is to decrypt the encrypted partition. Enter the command below into the Terminal window:
sudo dislocker -V -u -- /media/bitlocker
In the command above:
Replace with the device name containing the BitLocker encrypted partition that you noted in the step above.
Replace with the BitLocker password you used to encrypt the drive.
In case you want to decrypt the partition in read-only mode, just add the -r option in the command as follows:
sudo dislocker -r -V -u -- /media/bitlocker
Step 4: Mount the partition
The final step is to mount the Bitlocker partition to access the files. Run the command below:
sudo mount -o loop /media/bitlocker/dislocker-file /media/mount
You can now access the "/media/mount" folder in the file manager as well as encrypted partitions on Linux.
If you want to mount the partition in read-only mode, just add the -r option:
sudo mount -r -o loop /media/bitlocker/dislocker-file /media/mount
Above is how to access Windows partitions encrypted with Bitlocker from Linux. Hopefully TipsMake's above article has provided you with useful information. In addition, if you have any questions or concerns like how to Encrypt a USB drive using the BitLocker function on Windows , readers can leave their comments in the comments section below the article.