How to access a BitLocker-encrypted drive in Linux?
Matthew Barrera
I have a laptop running Windows 7 Ultimate. I have encrypted my drives using BitLocker. Now I have also installed Lubuntu along with Windows. But my encrypted drives are not visible in Linux. How can I fix this?
28 Answers
You can access BitLocker partition under Linux using Dislocker, an opensource driver which is using FUSE (or not).
For that, you need the file on a USB key (the one with the .bek extension) or the recovery password.
5Thanks to Aorimn, his solution worked for me. I'm fairly unexperienced with Unix, so it cost a few hours to figure it out. I thought I would describe the steps I took while my backup is running :)
My problem was that I could not boot Windows, and I needed a way to access my files on a Bitlocked partition. In order to do this, you need a bitlocker recovery password (8 groups of digits) and the ability to boot your system from USB.
- Download and install
LiLion an other Windows machine (Linux Live USB Creator) - Start
LiLiand have it download a lightweightubuntuimage. I choseXubuntu. - Install the image to your USB stick.
- Boot the problematic machine with the USB stick
- When you see the ubuntu boot screen, press a key.
- Under
F6, set the following options:nomodeset,acpi=off,noacpiandnolacpi - Boot
ubuntu. - Make a folder
/media/windowsand/media/mount. - Download and extract dislocker
sudo apt-get install libfuse-dev libmbedtls-dev- change directory to the
dislocker/srcfolder sudo makesudo make install- change directory to
/usr/bin sudo fdisk -l- identify the partition which is bitlocked. Mine was
/dev/sda1. sudo dislocker -r -V /dev/sda1 -p315442-000000-000000-000000-000000-000000-000000-000000 -- /media/windows(replace your own bitlocker key and source partition)- change dir to
/media/windows(usesudo -iif you can't access it) mount -o loop dislocker-file /media/mount- You should now see your files in a mounted drive of the file manager.
Backups are fairly slow, but it might save some trouble if you do end up reinstalling windows. Good luck!
3I just worked out a way to update Kali Linux and install dislocker.
Using Kali Linux 1.0.9a i386 bootable DVD
Edit "/etc/apt/sources.list" and add:
deb trusty main universeInstall programs using Terminal:
apt-get update"
apt-get install git libfuse-dev libpolarssl-dev # Continue through update text, allow services to restart if needed
git clone git://
cd /dislocker/src
make
make installFind drive Bitlocker volume:
fdisk -lMake folders in /mnt: tmp, dis.
Run dislocker:
dislocker -v -V /dev/<volume name> -p<Bitlocker key> -- /mnt/tmpCheck if file exists to confirm proper Bitlocker key:
ls /mnt/tmpShould return dislocker-file if correct.
Mount volume:
mount -o loop,ro /mnt/tmp/dislocker-file /mnt/disBrowse to /mnt/dis for access to files.
CryptSetup has added experimental support for BitLocker as of version 2.3.0 (February 2020), which is available in Ubuntu's repos for 20.10 Groovy onwards, although support will likely improve in later versions.
To open a BitLocker device with a password, use:
sudo cryptsetup open --type=bitlk <device> <name>or:
sudo cryptsetup bitlkOpen <device> <name>To open the device with a key file, use:
sudo cryptsetup open --type=bitlk --key-file=/etc/cryptsetup-keys.d/<name>.key <device> <name>To open the device at boot time, add the following to /etc/crypttab:
<name> PARTUUID=<part_uuid> /etc/cryptsetup-keys.d/<name>.key bitlkNote:
If a keyfile is not specified, systemd-cryptsetup(8) will automatically try to load it from
/etc/cryptsetup-keys.d/name.keyand/run/cryptsetup-keys.d/name.key(Source).
So you may replace the path to the key file with - or none.
Possible parameter values:
- device - /dev/sda1
- name - windows
- part_uuid - aaaaaaaa-1111-bbbb-2222-cccccccccccc (find
PARTUUIDwithsudo blkid | grep BitLocker)
Now you can mount the device with the following command:
sudo mount /dev/mapper/windows /path/to/mount/pointImportant note:
When setting up BitLocker on a device choose the option that encrypts the whole device (requires more time). The other option uses Encrypt-On-Write conversion model that makes sure that any new disk writes are encrypted as soon as you turn on BitLocker (data that existed on the device before encryption began can still be read and written without encryption) and is not supported by Cryptsetup.
You will get the following error when you try to open the device with Encrypt-On-Write conversion model:
BITLK devices with type 'encrypt-on-write' cannot be activated.
Cryptsetup 2.3.0 Release Notes
BitLocker configuration: known issues
1BitLocker is a proprietary, closed-source drive encryption system only supported by Windows. You'll have to remove BitLocker encryption if you want to access your Windows partitions from Linux.
See What is the difference between disabling BitLocker Drive Encryption and decrypting the volume? for instructions on doing so. It would be advisable to have a backup of your data completed first.
Once the drive is decrypted, you can use TrueCrypt instead; reading a System Encryption volume under Linux isn't supported by default, but someone has figured out a work-around. See How to use TrueCrypt®-encrypted Windows system drives on Linux.
At the very least, review the TrueCrypt documentation and more specifically, the list of supported OSes.
Yet another option is PGP Whole Disk Encryption. See PGP Whole Disk Encryption for Dual Boot Linux and Windows XP.
3Please note that libpolarssl-dev can't be used, it has been supersede with libmbedtls-dev so use this instead:
sudo apt-get install libmbedtls-devNote: by the way, it was a success using live boot. I am able to read and write. Just follow above steps.
The only thing I've found that might help you is NVbit. It's an experimental fuse driver that allows you to access BitLocker volumes. It's still in an alpha state, and it looks like you'll have to compile the code yourself. It also only allows read-only access, and some things might not work. I think it's your best bet, though.
5Hi If Anyone here not understanding this I have one LongCut Techinique.
- Download Vmware (can also install virtualbox which is free)and Windows 10/11 ISO (can also install win7,8)
- Then In VmWare Create new Virtual Machine with ISO
- after win Installation please connect your drive to this VM via VM tab in there
- Tada! enter your Bitlocker password and access the files.this Win can also be used for testing any other things on windows.