How To Install hw-probe on CentOS 7

In this tutorial we learn how to install hw-probe on CentOS 7. hw-probe is Check operability of computer hardware and find drivers

Introduction

In this tutorial we learn how to install hw-probe on CentOS 7.

What is hw-probe

A tool to check operability of computer hardware and upload result to the Linux hardware database. Probe is a snapshot of your computer hardware state and system logs. The tool checks operability of devices by analysis of logs and returns a permanent url to view the probe of the computer. The tool is intended to simplify collecting of logs necessary for investigating hardware related problems. Just run one simple command in the console to check your hardware and collect all the system logs at once sudo -E hw-probe -all -upload By creating probes you contribute to the HDD/SSD Real-Life Reliability Test study

We can use yum or dnf to install hw-probe on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install hw-probe.

Install hw-probe on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install hw-probe using yum by running the following command:

sudo yum -y install hw-probe

Install hw-probe on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install hw-probe using dnf by running the following command:

sudo dnf -y install hw-probe

How To Uninstall hw-probe on CentOS 7

To uninstall only the hw-probe package we can use the following command:

sudo dnf remove hw-probe

References

Summary

In this tutorial we learn how to install hw-probe on CentOS 7 using yum and dnf.