How To Install libmonospaceif-dev on Kali Linux
Introduction
In this tutorial we learn how to install libmonospaceif-dev
on Kali Linux.
What is libmonospaceif-dev
libmonospaceif-dev is:
This interface will translate all Z-Machine output, including window operations and text output, into simple place-cursor-at-x-y-and-print-text events, which in turn can be used for simple ncurses-like output on terminal-like displays. This is used by the fizmo-ncursesw frontend.
There are three methods to install libmonospaceif-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 libmonospaceif-dev Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install libmonospaceif-dev
using apt-get
by running the following command:
sudo apt-get -y install libmonospaceif-dev
Install libmonospaceif-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libmonospaceif-dev
using apt
by running the following command:
sudo apt -y install libmonospaceif-dev
Install libmonospaceif-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 update
After updating apt database, We can install libmonospaceif-dev
using aptitude
by running the following command:
sudo aptitude -y install libmonospaceif-dev
How To Uninstall libmonospaceif-dev on Kali Linux
To uninstall only the libmonospaceif-dev
package we can use the following command:
sudo apt-get remove libmonospaceif-dev
Uninstall libmonospaceif-dev And Its Dependencies
To uninstall libmonospaceif-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libmonospaceif-dev
Remove libmonospaceif-dev Configurations and Data
To remove libmonospaceif-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libmonospaceif-dev
Remove libmonospaceif-dev configuration, data, and all of its dependencies
We can use the following command to remove libmonospaceif-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libmonospaceif-dev
Dependencies
libmonospaceif-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libmonospaceif-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.