Skip to content

Instantly share code, notes, and snippets.

@dbirks
Created June 21, 2017 12:22
Show Gist options
  • Save dbirks/c5097420eabda5c93583d69bb0876c89 to your computer and use it in GitHub Desktop.
Save dbirks/c5097420eabda5c93583d69bb0876c89 to your computer and use it in GitHub Desktop.
Mount Bitlocker drive on Linux

Notes taken from the dislocker man page.

Make mount points

mkdir /mnt/ntfs
mkdir /mnt/clear

Mount the drive, and prompt for the password

dislocker -V /dev/sdc2 -u -- /mnt/ntfs

Then mount the drive as read-writable

mount -o loop /mnt/ntfs/dislocker-file /mnt/clear

Then once you're all done, unmount

umount /mnt/ntfs
umount /mnt/clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment