How To Install mate-system-monitor-common on Ubuntu 18.04

In this tutorial we learn how to install mate-system-monitor-common on Ubuntu 18.04. mate-system-monitor-common is Process viewer and system resource monitor for MATE (common files)

Introduction

In this tutorial we learn how to install mate-system-monitor-common on Ubuntu 18.04.

What is mate-system-monitor-common

mate-system-monitor-common is:

MATE system monitor allows you to graphically view and manipulate the running processes on your system. It also provides an overview of available resources such as CPU and memory.

This package contains the architecture independent files.

There are three methods to install mate-system-monitor-common on Ubuntu 18.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 mate-system-monitor-common Using apt-get

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

sudo apt-get update

After updating apt database, We can install mate-system-monitor-common using apt-get by running the following command:

sudo apt-get -y install mate-system-monitor-common

Install mate-system-monitor-common Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install mate-system-monitor-common using apt by running the following command:

sudo apt -y install mate-system-monitor-common

Install mate-system-monitor-common 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 mate-system-monitor-common using aptitude by running the following command:

sudo aptitude -y install mate-system-monitor-common

How To Uninstall mate-system-monitor-common on Ubuntu 18.04

To uninstall only the mate-system-monitor-common package we can use the following command:

sudo apt-get remove mate-system-monitor-common

Uninstall mate-system-monitor-common And Its Dependencies

To uninstall mate-system-monitor-common and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove mate-system-monitor-common

Remove mate-system-monitor-common Configurations and Data

To remove mate-system-monitor-common configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge mate-system-monitor-common

Remove mate-system-monitor-common configuration, data, and all of its dependencies

We can use the following command to remove mate-system-monitor-common configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge mate-system-monitor-common

References

Summary

In this tutorial we learn how to install mate-system-monitor-common package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.