How To Install libjung-free-java-doc on Kali Linux

In this tutorial we learn how to install libjung-free-java-doc on Kali Linux. libjung-free-java-doc is Java Universal Network/Graph Framework (documentation)

Introduction

In this tutorial we learn how to install libjung-free-java-doc on Kali Linux.

What is libjung-free-java-doc

libjung-free-java-doc is:

JUNG provides a common and extendible language for the modeling, analysis, and visualization of data that can be represented as a graph or network.

The JUNG architecture is designed to support a variety of representations of entities and their relations, such as directed and undirected graphs, multi-modal graphs, graphs with parallel edges, and hypergraphs. It provides a mechanism for annotating graphs, entities, and relations with metadata. This facilitates the creation of analytic tools for complex data sets that can examine the relations between entities as well as the metadata attached to each entity and relation.

The current distribution of JUNG includes implementations of a number of algorithms from graph theory, data mining, and social network analysis, such as routines for clustering, decomposition, optimization, random graph generation, statistical analysis, and calculation of network distances, flows, and importance measures (centrality, PageRank, HITS, etc.).

JUNG also provides a visualization framework that makes it easy to construct tools for the interactive exploration of network data. Users can use one of the layout algorithms provided, or use the framework to create their own custom layouts. In addition, filtering mechanisms are provided which allow users to focus their attention, or their algorithms, on specific portions of the graph.

This package contains the documentation.

There are three methods to install libjung-free-java-doc 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 libjung-free-java-doc Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libjung-free-java-doc using apt-get by running the following command:

sudo apt-get -y install libjung-free-java-doc

Install libjung-free-java-doc Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libjung-free-java-doc using apt by running the following command:

sudo apt -y install libjung-free-java-doc

Install libjung-free-java-doc 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 libjung-free-java-doc using aptitude by running the following command:

sudo aptitude -y install libjung-free-java-doc

How To Uninstall libjung-free-java-doc on Kali Linux

To uninstall only the libjung-free-java-doc package we can use the following command:

sudo apt-get remove libjung-free-java-doc

Uninstall libjung-free-java-doc And Its Dependencies

To uninstall libjung-free-java-doc and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libjung-free-java-doc

Remove libjung-free-java-doc Configurations and Data

To remove libjung-free-java-doc configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libjung-free-java-doc

Remove libjung-free-java-doc configuration, data, and all of its dependencies

We can use the following command to remove libjung-free-java-doc configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libjung-free-java-doc

Dependencies

libjung-free-java-doc have the following dependencies:

References

Summary

In this tutorial we learn how to install libjung-free-java-doc package on Kali Linux using different package management tools: apt, apt-get and aptitude.