How To Install libatomicbitvector-dev on Kali Linux
Introduction
In this tutorial we learn how to install libatomicbitvector-dev on Kali Linux.
What is libatomicbitvector-dev
libatomicbitvector-dev is:
This header-only library encodes a bitvector class with size fixed at runtime. Atomic operations allow for concurrent access and modification of the bitset. Such a structure can help with coordinating parallel processing of a given fixed set of entities, and has the advantage of only requiring O(1) bit per entry.
The atomic_bv_t class is a straightforward extension of ConcurrentBitSet from Facebook’s folly C++ library. It wraps the atomic type with a class that allows them to be copied, and these wrapped atomic types are then used to build a vector whose size is determined at runtime.
There are three methods to install libatomicbitvector-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 libatomicbitvector-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libatomicbitvector-dev using apt-get by running the following command:
sudo apt-get -y install libatomicbitvector-devInstall libatomicbitvector-dev Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libatomicbitvector-dev using apt by running the following command:
sudo apt -y install libatomicbitvector-devInstall libatomicbitvector-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 libatomicbitvector-dev using aptitude by running the following command:
sudo aptitude -y install libatomicbitvector-devHow To Uninstall libatomicbitvector-dev on Kali Linux
To uninstall only the libatomicbitvector-dev package we can use the following command:
sudo apt-get remove libatomicbitvector-devUninstall libatomicbitvector-dev And Its Dependencies
To uninstall libatomicbitvector-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libatomicbitvector-devRemove libatomicbitvector-dev Configurations and Data
To remove libatomicbitvector-dev configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libatomicbitvector-devRemove libatomicbitvector-dev configuration, data, and all of its dependencies
We can use the following command to remove libatomicbitvector-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libatomicbitvector-devDependencies
libatomicbitvector-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libatomicbitvector-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.