How To Install libukui-gsettings-dev on Debian 11
Introduction
In this tutorial we learn how to install libukui-gsettings-dev
on Debian 11.
What is libukui-gsettings-dev
libukui-gsettings-dev is:
UKUI interface provides the interface for system configuration and related libraries.
The package contains development files for application settings.
There are three methods to install libukui-gsettings-dev
on Debian 11. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libukui-gsettings-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 libukui-gsettings-dev
using apt-get
by running the following command:
sudo apt-get -y install libukui-gsettings-dev
Install libukui-gsettings-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libukui-gsettings-dev
using apt
by running the following command:
sudo apt -y install libukui-gsettings-dev
Install libukui-gsettings-dev Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libukui-gsettings-dev
using aptitude
by running the following command:
sudo aptitude -y install libukui-gsettings-dev
How To Uninstall libukui-gsettings-dev on Debian 11
To uninstall only the libukui-gsettings-dev
package we can use the following command:
sudo apt-get remove libukui-gsettings-dev
Uninstall libukui-gsettings-dev And Its Dependencies
To uninstall libukui-gsettings-dev
and its dependencies that are no longer needed by Debian 11, we can use the command below:
sudo apt-get -y autoremove libukui-gsettings-dev
Remove libukui-gsettings-dev Configurations and Data
To remove libukui-gsettings-dev
configuration and data from Debian 11 we can use the following command:
sudo apt-get -y purge libukui-gsettings-dev
Remove libukui-gsettings-dev configuration, data, and all of its dependencies
We can use the following command to remove libukui-gsettings-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libukui-gsettings-dev
Dependencies
libukui-gsettings-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libukui-gsettings-dev
package on Debian 11 using different package management tools: apt
, apt-get
and aptitude
.