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?
Asked
Active
Viewed 1.7k times
1 Answers
5
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-dev
If git is not installed on your system you can install git by running the following command. Open the terminal and type:
sudo apt install git
Then you can install dislocker from source using git. Open the terminal and type the below commands.
git clone https://github.com/Aorimn/dislocker.git
cd dislocker
cmake .
make
sudo make install
Now you can start using dislocker. It works fine.
karel
- 122,292
- 133
- 301
- 332
axiomgraph
- 71