How To Install condure on Kali Linux
Introduction
In this tutorial we learn how to install condure on Kali Linux.
What is condure
condure is:
Condure is a service that manages network connections on behalf of server applications, in order to allow controlling the connections from multiple processes. Applications communicate with Condure over ZeroMQ.
Condure can only manage connections for protocols it knows about. Currently this is HTTP/1 and WebSockets. See Supported protocols.
The project was inspired by Mongrel2.
There are three methods to install condure 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 condure Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install condure using apt-get by running the following command:
sudo apt-get -y install condureInstall condure Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install condure using apt by running the following command:
sudo apt -y install condureInstall condure 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 condure using aptitude by running the following command:
sudo aptitude -y install condureHow To Uninstall condure on Kali Linux
To uninstall only the condure package we can use the following command:
sudo apt-get remove condureUninstall condure And Its Dependencies
To uninstall condure and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove condureRemove condure Configurations and Data
To remove condure configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge condureRemove condure configuration, data, and all of its dependencies
We can use the following command to remove condure configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge condureDependencies
condure have the following dependencies:
References
Summary
In this tutorial we learn how to install condure package on Kali Linux using different package management tools: apt, apt-get and aptitude.