How To Install libnanomsg-dev on Kali Linux
Introduction
In this tutorial we learn how to install libnanomsg-dev
on Kali Linux.
What is libnanomsg-dev
libnanomsg-dev is:
nanomsg is a socket library that provides several common communication patterns. It aims to make the networking layer fast, scalable, and easy to use. Implemented in C, it works on a wide range of operating systems with no further dependencies.
The communication patterns, also called “scalability protocols”, are basic blocks for building distributed systems. By combining them you can create a vast array of distributed applications. The following scalability protocols are currently available:
PAIR - simple one-to-one communication
BUS - simple many-to-many communication
REQREP - allows one to build clusters of stateless services
to process user requests
PUBSUB - distributes messages to large sets of interested subscribers
PIPELINE - aggregates messages from multiple sources and
load balances them among many destinations
SURVEY - allows one to query state of multiple applications in a single go
This package contains the development files for nanomsg.
There are three methods to install libnanomsg-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 libnanomsg-dev Using apt-get
Update apt database with apt-get
using the following command.
After updating apt database, We can install libnanomsg-dev
using apt-get
by running the following command:
Install libnanomsg-dev Using apt
Update apt database with apt
using the following command.
After updating apt database, We can install libnanomsg-dev
using apt
by running the following command:
Install libnanomsg-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.
After updating apt database, We can install libnanomsg-dev
using aptitude
by running the following command:
How To Uninstall libnanomsg-dev on Kali Linux
To uninstall only the libnanomsg-dev
package we can use the following command:
Uninstall libnanomsg-dev And Its Dependencies
To uninstall libnanomsg-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
Remove libnanomsg-dev Configurations and Data
To remove libnanomsg-dev
configuration and data from Kali Linux we can use the following command:
Remove libnanomsg-dev configuration, data, and all of its dependencies
We can use the following command to remove libnanomsg-dev
configurations, data and all of its dependencies, we can use the following command:
Dependencies
libnanomsg-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libnanomsg-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.