How To Install gnome-control-center-faces on Ubuntu 22.04

In this tutorial we learn how to install gnome-control-center-faces on Ubuntu 22.04. gnome-control-center-faces is utilities to configure the GNOME desktop - faces images

Introduction

In this tutorial we learn how to install gnome-control-center-faces on Ubuntu 22.04.

What is gnome-control-center-faces

gnome-control-center-faces is:

This package contains images that can be used for user profile’s icon

There are three methods to install gnome-control-center-faces on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install gnome-control-center-faces Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install gnome-control-center-faces using apt-get by running the following command:

sudo apt-get -y install gnome-control-center-faces

Install gnome-control-center-faces Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gnome-control-center-faces using apt by running the following command:

sudo apt -y install gnome-control-center-faces

Install gnome-control-center-faces 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 Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install gnome-control-center-faces using aptitude by running the following command:

sudo aptitude -y install gnome-control-center-faces

How To Uninstall gnome-control-center-faces on Ubuntu 22.04

To uninstall only the gnome-control-center-faces package we can use the following command:

sudo apt-get remove gnome-control-center-faces

Uninstall gnome-control-center-faces And Its Dependencies

To uninstall gnome-control-center-faces and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove gnome-control-center-faces

Remove gnome-control-center-faces Configurations and Data

To remove gnome-control-center-faces configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge gnome-control-center-faces

Remove gnome-control-center-faces configuration, data, and all of its dependencies

We can use the following command to remove gnome-control-center-faces configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge gnome-control-center-faces

References

Summary

In this tutorial we learn how to install gnome-control-center-faces package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.