How To Install probert-common on Ubuntu 22.04

In this tutorial we learn how to install probert-common on Ubuntu 22.04. probert-common is Hardware probing tool - common

Introduction

In this tutorial we learn how to install probert-common on Ubuntu 22.04.

What is probert-common

probert-common is:

This package provides a tool for probing host hardware information and emitting a JSON report.

This package provides the common code for probing.

There are three methods to install probert-common 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 probert-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 probert-common using apt-get by running the following command:

sudo apt-get -y install probert-common

Install probert-common Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install probert-common

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

sudo aptitude -y install probert-common

How To Uninstall probert-common on Ubuntu 22.04

To uninstall only the probert-common package we can use the following command:

sudo apt-get remove probert-common

Uninstall probert-common And Its Dependencies

To uninstall probert-common and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove probert-common

Remove probert-common Configurations and Data

To remove probert-common configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge probert-common

Remove probert-common configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge probert-common

References

Summary

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