How to access bitlocker encrypted drive in Ubuntu 16.04? Dislocker utility worked in 14.04 but a package which dislocker depends libpolarssl is missing in 16.04. Is there any workaround or any other utility?
31 Answer
You can install polarssl and dislocker on Ubuntu 16.04 by following TuxDiary - dislocker: decrypt BitLocker encrypted volumes.
Open the terminal and type:
sudo apt-get install libmbedcrypto0 libmbedtls-dev libfuse-devIf git is not installed on your system you can install git by running the following command. Open the terminal and type:
sudo apt install gitThen you can install dislocker from source using git. Open the terminal and type the below commands.
git clone
cd dislocker
cmake .
make
sudo make installNow you can start using dislocker. It works fine.
0