How To Install theme-d-gnome-dev on Kali Linux
Introduction
In this tutorial we learn how to install theme-d-gnome-dev
on Kali Linux.
What is theme-d-gnome-dev
theme-d-gnome-dev is:
This package provides GNOME bindings for Theme-D so you can create GUI programs with it. The library contains bindings for the following GNOME libraries:
- ATK
- GDK
- GDK-Pixbuf
- GDK
- GTK
- Pango This package contains files required to build programs using Theme-D-Gnome. This package also contains documentation and examples for the library.
There are three methods to install theme-d-gnome-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 theme-d-gnome-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 theme-d-gnome-dev
using apt-get
by running the following command:
sudo apt-get -y install theme-d-gnome-dev
Install theme-d-gnome-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install theme-d-gnome-dev
using apt
by running the following command:
sudo apt -y install theme-d-gnome-dev
Install theme-d-gnome-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 theme-d-gnome-dev
using aptitude
by running the following command:
sudo aptitude -y install theme-d-gnome-dev
How To Uninstall theme-d-gnome-dev on Kali Linux
To uninstall only the theme-d-gnome-dev
package we can use the following command:
sudo apt-get remove theme-d-gnome-dev
Uninstall theme-d-gnome-dev And Its Dependencies
To uninstall theme-d-gnome-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove theme-d-gnome-dev
Remove theme-d-gnome-dev Configurations and Data
To remove theme-d-gnome-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge theme-d-gnome-dev
Remove theme-d-gnome-dev configuration, data, and all of its dependencies
We can use the following command to remove theme-d-gnome-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge theme-d-gnome-dev
Dependencies
theme-d-gnome-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install theme-d-gnome-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.