How To Install libgraph-easy-perl on Kali Linux
Introduction
In this tutorial we learn how to install libgraph-easy-perl on Kali Linux.
What is libgraph-easy-perl
libgraph-easy-perl is:
Graph::Easy lets you generate graphs consisting of various shaped nodes connected by edges (with optional labels).
It can read and write graphs in a variety of formats, as well as render them via its own grid-based layouter. It has export filters for Graphviz, VCG (Visualizing Compiler Graphs), GDL (Graph Description Language) and GraphML. Import filters are for Graphviz, VCG and GDL.
Since the layouter works on a grid (manhattan layout), the output is most useful for flow charts, network diagrams, or hierarchy trees.
Graph::Easy has an easy-to-understand, compact and human readable graph description language.
There are three methods to install libgraph-easy-perl 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 libgraph-easy-perl Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libgraph-easy-perl using apt-get by running the following command:
sudo apt-get -y install libgraph-easy-perlInstall libgraph-easy-perl Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libgraph-easy-perl using apt by running the following command:
sudo apt -y install libgraph-easy-perlInstall libgraph-easy-perl 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 libgraph-easy-perl using aptitude by running the following command:
sudo aptitude -y install libgraph-easy-perlHow To Uninstall libgraph-easy-perl on Kali Linux
To uninstall only the libgraph-easy-perl package we can use the following command:
sudo apt-get remove libgraph-easy-perlUninstall libgraph-easy-perl And Its Dependencies
To uninstall libgraph-easy-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libgraph-easy-perlRemove libgraph-easy-perl Configurations and Data
To remove libgraph-easy-perl configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libgraph-easy-perlRemove libgraph-easy-perl configuration, data, and all of its dependencies
We can use the following command to remove libgraph-easy-perl configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libgraph-easy-perlDependencies
libgraph-easy-perl have the following dependencies:
References
Summary
In this tutorial we learn how to install libgraph-easy-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.