Encrypt Bitlocker Drive in Linux

This is a very small howto on how to mount an NTFS drive encrypted with Bitlocker under Linux.

install dislocker (hdd name is merkur, 1TB usb drive)

Find the devicename of the encrypted bitlocker drive

fdisk -l

Festplatte /dev/sdb: 931,53 GiB, 1000204886016 Bytes, 1953525168 Sektoren
Festplattenmodell: External USB 3.0
Einheiten: Sektoren von 1 * 512 = 512 Bytes
Sektorgröße (logisch/physikalisch): 512 Bytes / 512 Bytes
E/A-Größe (minimal/optimal): 512 Bytes / 512 Bytes
Festplattenbezeichnungstyp: dos
Festplattenbezeichner: 0x2d390cd3

Gerät Boot Anfang Ende Sektoren Größe Kn Typ /dev/sdb1 2048 1953521663 1953519616 931,5G 7 HPFS/NTFS/exFAT

Time to generate the mnt point for the dislocker encrypt file

mkdir /mnt/merkur
dislocker-fuse -r -V /dev/sdb1 -u -- /mnt/merkur

Mount dislocker file as device

sudo mkdir /mnt/merkur-data sudo mount -r -o loop /mnt/merkur/dislocker-file /mnt/merkur-data

Encrypt the Bitlocker drive via fstab (automount when system starts)

/dev/sdb1 /mnt/merkur fuse.dislocker user-password=,nofail 0 0<br>
/mnt/merkur/dislocker-file /mnt/merkur-data auto nofail 0 0

Attention: Sometimes it may happen that the drive cannot be mounted automatically because „fuse3“ was not found. In this case just install the lib. Then it runs.