How To Install libleveldb-cil-dev on Kali Linux

In this tutorial we learn how to install libleveldb-cil-dev on Kali Linux. libleveldb-cil-dev is portable C# binding for the C API of the LevelDB library - development files

Introduction

In this tutorial we learn how to install libleveldb-cil-dev on Kali Linux.

What is libleveldb-cil-dev

libleveldb-cil-dev is:

LevelDB is a fast key-value storage library written at Google that provides an ordered mapping from string keys to string values.

This package contains development files for the C# bindings for LevelDB, and should be used for compilation.

There are three methods to install libleveldb-cil-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libleveldb-cil-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install libleveldb-cil-dev using apt-get by running the following command:

sudo apt-get -y install libleveldb-cil-dev

Install libleveldb-cil-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libleveldb-cil-dev using apt by running the following command:

sudo apt -y install libleveldb-cil-dev

Install libleveldb-cil-dev Using aptitude

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

sudo aptitude update

After updating apt database, We can install libleveldb-cil-dev using aptitude by running the following command:

sudo aptitude -y install libleveldb-cil-dev

How To Uninstall libleveldb-cil-dev on Kali Linux

To uninstall only the libleveldb-cil-dev package we can use the following command:

sudo apt-get remove libleveldb-cil-dev

Uninstall libleveldb-cil-dev And Its Dependencies

To uninstall libleveldb-cil-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libleveldb-cil-dev

Remove libleveldb-cil-dev Configurations and Data

To remove libleveldb-cil-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libleveldb-cil-dev

Remove libleveldb-cil-dev configuration, data, and all of its dependencies

We can use the following command to remove libleveldb-cil-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libleveldb-cil-dev

Dependencies

libleveldb-cil-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install libleveldb-cil-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.