How To Install gnome-color-manager on Ubuntu 20.04

In this tutorial we learn how to install gnome-color-manager on Ubuntu 20.04. gnome-color-manager is Color management integration for the GNOME desktop environment

Introduction

In this tutorial we learn how to install gnome-color-manager on Ubuntu 20.04.

What is gnome-color-manager

gnome-color-manager is:

GNOME Color Manager is a set of graphical utilities for color management to be used in the GNOME desktop. With the help of ArgyllCMS, it can create and apply display ICC color profiles. Task: ubuntu-budgie-desktop

There are three methods to install gnome-color-manager on Ubuntu 20.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-color-manager 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-color-manager using apt-get by running the following command:

sudo apt-get -y install gnome-color-manager

Install gnome-color-manager Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install gnome-color-manager using apt by running the following command:

sudo apt -y install gnome-color-manager

Install gnome-color-manager 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-color-manager using aptitude by running the following command:

sudo aptitude -y install gnome-color-manager

How To Uninstall gnome-color-manager on Ubuntu 20.04

To uninstall only the gnome-color-manager package we can use the following command:

sudo apt-get remove gnome-color-manager

Uninstall gnome-color-manager And Its Dependencies

To uninstall gnome-color-manager and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove gnome-color-manager

Remove gnome-color-manager Configurations and Data

To remove gnome-color-manager configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge gnome-color-manager

Remove gnome-color-manager configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge gnome-color-manager

References

Summary

In this tutorial we learn how to install gnome-color-manager package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.