How To Install awesome on Kali Linux
Introduction
In this tutorial we learn how to install awesome on Kali Linux.
What is awesome
awesome is:
awesome manages windows dynamically in floating or tiled layouts. It is primarily targeted at power users, developers, and all those dealing with everyday computing tasks and looking for fine-grained control over their graphical environment.
It is highly extensible and scriptable via the Lua programming language, providing an easy-to-use and very well documented API to configure its behavior.
awesome uses tags instead of workspaces, which gives better flexibility in displaying windows, and can be entirely keyboard-driven, not needing a mouse. It also supports multi-headed configurations; uses XCB instead of Xlib for better performance; implements many freedesktop standards; and can be controlled over D-Bus from awesome-client.
There are three methods to install awesome 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 awesome Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get updateAfter updating apt database, We can install awesome using apt-get by running the following command:
sudo apt-get -y install awesomeInstall awesome Using apt
Update apt database with apt using the following command.
sudo apt updateAfter updating apt database, We can install awesome using apt by running the following command:
sudo apt -y install awesomeInstall awesome 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 awesome using aptitude by running the following command:
sudo aptitude -y install awesomeHow To Uninstall awesome on Kali Linux
To uninstall only the awesome package we can use the following command:
sudo apt-get remove awesomeUninstall awesome And Its Dependencies
To uninstall awesome and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove awesomeRemove awesome Configurations and Data
To remove awesome configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge awesomeRemove awesome configuration, data, and all of its dependencies
We can use the following command to remove awesome configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge awesomeDependencies
awesome have the following dependencies:
- default-dbus-session-bus
- gir1.2-freedesktop
- gir1.2-gdkpixbuf-2.0
- gir1.2-glib-2.0
- gir1.2-pango-1.0
- libcairo-gobject2
- lua-lgi
- menu
- libc6
- libcairo2
- libdbus-1-3
- libgdk-pixbuf-2.0-0
- libglib2.0-0
- liblua5.3-0
- libstartup-notification0
- libx11-6
- libxcb-cursor0
- libxcb-icccm4
- libxcb-keysyms1
- libxcb-randr0
- libxcb-shape0
- libxcb-util1
- libxcb-xinerama0
- libxcb-xkb1
- libxcb-xrm0
- libxcb-xtest0
- libxcb1
- libxdg-basedir1
- libxkbcommon-x11-0
- libxkbcommon0
References
Summary
In this tutorial we learn how to install awesome package on Kali Linux using different package management tools: apt, apt-get and aptitude.