How To Install openbox on Kali Linux
Introduction
In this tutorial we learn how to install openbox on Kali Linux.
What is openbox
openbox is:
Openbox works with your applications, and makes your desktop easier to manage. This is because the approach to its development was the opposite of what seems to be the general case for window managers. Openbox was written first to comply with standards and to work properly. Only when that was in place did the team turn to the visual interface.
Openbox is fully functional as a stand-alone working environment, or can be used as a drop-in replacement for the default window manager in the GNOME or KDE desktop environments.
Openbox 3 is a completely new breed of window manager. It is not based upon any existing code base, although the visual appearance has been based upon that of Blackbox. Openbox 2 was based on the Blackbox 0.65.0 codebase.
Some of the things to look for in Openbox are:
- ICCCM and EWMH compliance!
- Very fast
- Chainable key bindings
- Customizable mouse actions
- Window resistance
- Multi-head Xinerama support!
- Pipe menus
There are three methods to install openbox 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 openbox Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install openbox using apt-get by running the following command:
sudo apt-get -y install openboxInstall openbox Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install openbox using apt by running the following command:
sudo apt -y install openboxInstall openbox 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 openbox using aptitude by running the following command:
sudo aptitude -y install openboxHow To Uninstall openbox on Kali Linux
To uninstall only the openbox package we can use the following command:
sudo apt-get remove openboxUninstall openbox And Its Dependencies
To uninstall openbox and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove openboxRemove openbox Configurations and Data
To remove openbox configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge openboxRemove openbox configuration, data, and all of its dependencies
We can use the following command to remove openbox configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge openboxDependencies
openbox have the following dependencies:
References
Summary
In this tutorial we learn how to install openbox package on Kali Linux using different package management tools: apt, apt-get and aptitude.