Introduction
In this tutorial we learn how to install autobahn-cpp-dev
on Kali Linux.
What is autobahn-cpp-dev
autobahn-cpp-dev is:
Autobahn|Cpp provides an implementation of the WebSocket and Web
Application Messaging (WAMP) protocols.
WebSocket allows bidirectional real-time messaging on the Web and
WAMP adds asynchronous Remote Procedure Calls and Publish &
Subscribe on top of WebSocket.
Autobahn|Cpp is open-source, licensed under the Boost Software
License. The API and implementation make use of modern C++ 11 and
new asynchronous idioms using (upcoming) features of the standard
C++ library, in particular Futures, Continuations and Lambdas.
This package includes the header files
There are three methods to install autobahn-cpp-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 autobahn-cpp-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 autobahn-cpp-dev
using apt-get
by running the following command:
sudo apt-get -y install autobahn-cpp-dev
Install autobahn-cpp-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install autobahn-cpp-dev
using apt
by running the following command:
sudo apt -y install autobahn-cpp-dev
Install autobahn-cpp-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 autobahn-cpp-dev
using aptitude
by running the following command:
sudo aptitude -y install autobahn-cpp-dev
How To Uninstall autobahn-cpp-dev on Kali Linux
To uninstall only the autobahn-cpp-dev
package we can use the following command:
sudo apt-get remove autobahn-cpp-dev
Uninstall autobahn-cpp-dev And Its Dependencies
To uninstall autobahn-cpp-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove autobahn-cpp-dev
Remove autobahn-cpp-dev Configurations and Data
To remove autobahn-cpp-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge autobahn-cpp-dev
Remove autobahn-cpp-dev configuration, data, and all of its dependencies
We can use the following command to remove autobahn-cpp-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge autobahn-cpp-dev
Dependencies
autobahn-cpp-dev have the following dependencies:
- cmake
- libmsgpack-dev
- libwebsocketpp-dev
- libboost-program-options-dev
- libboost-thread-dev
- libboost-system-dev
- libboost-random-dev
- libssl-dev
References
Summary
In this tutorial we learn how to install autobahn-cpp-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.