How To Install libclucene-dev on Kali Linux
Introduction
In this tutorial we learn how to install libclucene-dev on Kali Linux.
What is libclucene-dev
libclucene-dev is:
CLucene is a C++ port of the popular Apache Lucene search engine (http://lucene.apache.org/java). It is released under LGPL or the Apache License.
CLucene aims to be a high-speed alternative to Java Lucene, its API is very similar to that of the Java version. CLucene has recently been brought up to date with Lucene 1.4.3. It contains most of the same functionality as the Java version, except for Socket, Threading and the special caching modifications.
This package contains the static libraries and headers for developing applications that use the CLucene search API.
There are three methods to install libclucene-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 libclucene-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libclucene-dev using apt-get by running the following command:
sudo apt-get -y install libclucene-devInstall libclucene-dev Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libclucene-dev using apt by running the following command:
sudo apt -y install libclucene-devInstall libclucene-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 libclucene-dev using aptitude by running the following command:
sudo aptitude -y install libclucene-devHow To Uninstall libclucene-dev on Kali Linux
To uninstall only the libclucene-dev package we can use the following command:
sudo apt-get remove libclucene-devUninstall libclucene-dev And Its Dependencies
To uninstall libclucene-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libclucene-devRemove libclucene-dev Configurations and Data
To remove libclucene-dev configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libclucene-devRemove libclucene-dev configuration, data, and all of its dependencies
We can use the following command to remove libclucene-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libclucene-devDependencies
libclucene-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libclucene-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.