How To Install libopenhft-chronicle-network-java on Kali Linux
Introduction
In this tutorial we learn how to install libopenhft-chronicle-network-java
on Kali Linux.
What is libopenhft-chronicle-network-java
libopenhft-chronicle-network-java is:
Chronicle Network is a network library designed to be lower latency and support higher throughputs than Netty by employing techniques used in low latency trading systems.
There are three methods to install libopenhft-chronicle-network-java
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 libopenhft-chronicle-network-java Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libopenhft-chronicle-network-java
using apt-get
by running the following command:
sudo apt-get -y install libopenhft-chronicle-network-java
Install libopenhft-chronicle-network-java Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libopenhft-chronicle-network-java
using apt
by running the following command:
sudo apt -y install libopenhft-chronicle-network-java
Install libopenhft-chronicle-network-java 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 libopenhft-chronicle-network-java
using aptitude
by running the following command:
sudo aptitude -y install libopenhft-chronicle-network-java
How To Uninstall libopenhft-chronicle-network-java on Kali Linux
To uninstall only the libopenhft-chronicle-network-java
package we can use the following command:
sudo apt-get remove libopenhft-chronicle-network-java
Uninstall libopenhft-chronicle-network-java And Its Dependencies
To uninstall libopenhft-chronicle-network-java
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libopenhft-chronicle-network-java
Remove libopenhft-chronicle-network-java Configurations and Data
To remove libopenhft-chronicle-network-java
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libopenhft-chronicle-network-java
Remove libopenhft-chronicle-network-java configuration, data, and all of its dependencies
We can use the following command to remove libopenhft-chronicle-network-java
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libopenhft-chronicle-network-java
Dependencies
libopenhft-chronicle-network-java have the following dependencies:
- libintellij-annotations-java
- libopenhft-chronicle-bytes-java
- libopenhft-chronicle-core-java
- libopenhft-chronicle-threads-java
- libopenhft-chronicle-wire-java
- libslf4j-java
References
Summary
In this tutorial we learn how to install libopenhft-chronicle-network-java
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.