How To Install braillegraph on Kali Linux

In this tutorial we learn how to install braillegraph on Kali Linux. braillegraph is simple histogram tool producing text dot-matrix graphs

Introduction

In this tutorial we learn how to install braillegraph on Kali Linux.

What is braillegraph

braillegraph is:

This tool lets you plot a single-series histogram on a text dot-matrix display by abusing Unicode. This gives a resolution of 2?4 per character, as opposed to the usual single asterisk you get with ASCII.

There are three methods to install braillegraph 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 braillegraph Using apt-get

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

sudo apt-get update

After updating apt database, We can install braillegraph using apt-get by running the following command:

sudo apt-get -y install braillegraph

Install braillegraph Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install braillegraph using apt by running the following command:

sudo apt -y install braillegraph

Install braillegraph 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 braillegraph using aptitude by running the following command:

sudo aptitude -y install braillegraph

How To Uninstall braillegraph on Kali Linux

To uninstall only the braillegraph package we can use the following command:

sudo apt-get remove braillegraph

Uninstall braillegraph And Its Dependencies

To uninstall braillegraph and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove braillegraph

Remove braillegraph Configurations and Data

To remove braillegraph configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge braillegraph

Remove braillegraph configuration, data, and all of its dependencies

We can use the following command to remove braillegraph configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge braillegraph

Dependencies

braillegraph have the following dependencies:

References

Summary

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