How To Install libdislocker0.7 on Ubuntu 18.04

In this tutorial we learn how to install libdislocker0.7 on Ubuntu 18.04. libdislocker0.7 is read/write encrypted BitLocker volumes (shared library)

Introduction

In this tutorial we learn how to install libdislocker0.7 on Ubuntu 18.04.

What is libdislocker0.7

libdislocker0.7 is:

Dislocker has been designed to read BitLocker encrypted partitions under a Linux system. The driver used to read volumes encrypted in Windows system versions of the Vista to 10 and BitLocker-To-Go encrypted partitions,that’s USB/FAT32 partitions.

The software works with driver composed of a library, with multiple binaries using this library. Decrypting the partition, you have to give it a mount point where, once keys are decrypted, a file named dislocker-file appears. This file is a virtual NTFS partition, so you can mount it as any NTFS partition and then read from or write to it. Writing to the NTFS virtual file will change the underlying BitLocker partition content.

This package provides the runtime library.

There are three methods to install libdislocker0.7 on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libdislocker0.7 Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libdislocker0.7 using apt-get by running the following command:

sudo apt-get -y install libdislocker0.7

Install libdislocker0.7 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libdislocker0.7 using apt by running the following command:

sudo apt -y install libdislocker0.7

Install libdislocker0.7 Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libdislocker0.7 using aptitude by running the following command:

sudo aptitude -y install libdislocker0.7

How To Uninstall libdislocker0.7 on Ubuntu 18.04

To uninstall only the libdislocker0.7 package we can use the following command:

sudo apt-get remove libdislocker0.7

Uninstall libdislocker0.7 And Its Dependencies

To uninstall libdislocker0.7 and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libdislocker0.7

Remove libdislocker0.7 Configurations and Data

To remove libdislocker0.7 configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libdislocker0.7

Remove libdislocker0.7 configuration, data, and all of its dependencies

We can use the following command to remove libdislocker0.7 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libdislocker0.7

References

Summary

In this tutorial we learn how to install libdislocker0.7 package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.