Using Bitlocker on Linux
To use Bitlocker on the command line you would do the following:
Install dislocker:
sudo apt install dislocker
Create folders for decrypting and mounting:
sudo mkdir -p /media/bitlocker_decrypt
sudo mkdir -p /media/bitlocker_mount
Find out which partition is Bitlocker encrypted:
sudo fdisk -l
lsblk
Decrypt the Bitlocker encrypted partition:
sudo dislocker -u /media/bitlocker_decrypt
Mount Bitlocker encrypted partition:
sudo mount -o loop /media/bitlocker_decrypt/dislocker-file /media/bitlocker_mount
Check for more Linux related articles.