How To Install openwince-include on Kali Linux
Introduction
In this tutorial we learn how to install openwince-include
on Kali Linux.
What is openwince-include
openwince-include is:
The openwince-include package contains all common include files for the open wince project. (http://openwince.sourceforge.net/)
There are three methods to install openwince-include
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 openwince-include Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install openwince-include
using apt-get
by running the following command:
sudo apt-get -y install openwince-include
Install openwince-include Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install openwince-include
using apt
by running the following command:
sudo apt -y install openwince-include
Install openwince-include 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 openwince-include
using aptitude
by running the following command:
sudo aptitude -y install openwince-include
How To Uninstall openwince-include on Kali Linux
To uninstall only the openwince-include
package we can use the following command:
sudo apt-get remove openwince-include
Uninstall openwince-include And Its Dependencies
To uninstall openwince-include
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove openwince-include
Remove openwince-include Configurations and Data
To remove openwince-include
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge openwince-include
Remove openwince-include configuration, data, and all of its dependencies
We can use the following command to remove openwince-include
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge openwince-include
Dependencies
openwince-include have the following dependencies:
References
Summary
In this tutorial we learn how to install openwince-include
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.