How To Install libtermbox-dev on Kali Linux
Introduction
In this tutorial we learn how to install libtermbox-dev on Kali Linux.
What is libtermbox-dev
libtermbox-dev is:
Termbox is a library that provides minimalistic API which allows the programmer to write text-based user interfaces.
It is based on a very simple abstraction. The main idea is viewing terminals as a table of fixed-size cells and input being a stream of structured messages. Would be fair to say that the model is inspired by windows console API. The abstraction itself is not perfect and it may create problems in certain areas. The most sensitive ones are copy & pasting and wide characters (mostly Chinese, Japanese, Korean (CJK) characters). When it comes to copy & pasting, the notion of cells is not really compatible with the idea of text. And CJK runes often require more than one cell to display them nicely. Despite the mentioned flaws, using such a simple model brings benefits in a form of simplicity. And KISS principle is important.
At this point one should realize, that CLI (command-line interfaces) aren’t really a thing termbox is aimed at. But rather pseudo-graphical user interfaces.
This package ships with headers and static library.
There are three methods to install libtermbox-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 libtermbox-dev Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install libtermbox-dev using apt-get by running the following command:
sudo apt-get -y install libtermbox-devInstall libtermbox-dev Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install libtermbox-dev using apt by running the following command:
sudo apt -y install libtermbox-devInstall libtermbox-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 libtermbox-dev using aptitude by running the following command:
sudo aptitude -y install libtermbox-devHow To Uninstall libtermbox-dev on Kali Linux
To uninstall only the libtermbox-dev package we can use the following command:
sudo apt-get remove libtermbox-devUninstall libtermbox-dev And Its Dependencies
To uninstall libtermbox-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libtermbox-devRemove libtermbox-dev Configurations and Data
To remove libtermbox-dev configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libtermbox-devRemove libtermbox-dev configuration, data, and all of its dependencies
We can use the following command to remove libtermbox-dev configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtermbox-devDependencies
libtermbox-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libtermbox-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.