How To Install nim-lapper-dev on Kali Linux
Introduction
In this tutorial we learn how to install nim-lapper-dev on Kali Linux.
What is nim-lapper-dev
nim-lapper-dev is:
This package uses a binary search in a sorted list of intervals along with knowledge of the longest interval. It works when the size of the largest interval is smaller than the average distance between intervals. As that ratio of largest-size::mean-distance increases, the performance decreases. On realistic (for the author’s use-case) data, this is 1000 times faster to query results and >5000 times faster to check for presence than a brute-force method.
Lapper also has a special case seek method when queries are expected
to be in order. This method uses a cursor to indicate that start of the
last search and does a linear search from that cursor to find matching
intervals. This gives an additional 2-fold speedup over the find
method.
There are three methods to install nim-lapper-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 nim-lapper-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install nim-lapper-dev using apt-get by running the following command:
sudo apt-get -y install nim-lapper-devInstall nim-lapper-dev Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install nim-lapper-dev using apt by running the following command:
sudo apt -y install nim-lapper-devInstall nim-lapper-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 updateAfter updating apt database, We can install nim-lapper-dev using aptitude by running the following command:
sudo aptitude -y install nim-lapper-devHow To Uninstall nim-lapper-dev on Kali Linux
To uninstall only the nim-lapper-dev package we can use the following command:
sudo apt-get remove nim-lapper-devUninstall nim-lapper-dev And Its Dependencies
To uninstall nim-lapper-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove nim-lapper-devRemove nim-lapper-dev Configurations and Data
To remove nim-lapper-dev configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge nim-lapper-devRemove nim-lapper-dev configuration, data, and all of its dependencies
We can use the following command to remove nim-lapper-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge nim-lapper-devDependencies
nim-lapper-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install nim-lapper-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.