How To Install tiptop on CentOS 7

In this tutorial we learn how to install tiptop on CentOS 7. tiptop is Performance monitoring tool based on hardware counters

Introduction

In this tutorial we learn how to install tiptop on CentOS 7.

What is tiptop

Hardware performance monitoring counters have recently received a lot of attention. They have been used by diverse communities to understand and improve the quality of computing systems example, architects use them to extract application characteristics and propose new hardware mechanisms; compiler writers study how generated code behaves on particular hardware; software developers identify critical regions of their applications and evaluate design choices to select the best performing implementation. We propose that counters be used by all categories of users, in particular non-experts, and we advocate that a few simple metrics derived from these counters are relevant and useful. For example, a low IPC (number of executed instructions per cycle) indicates that the hardware is not performing at its best; a high cache miss ratio can suggest several causes, such as conflicts between processes in a multicore environment. Tiptop is a performance monitoring tool for Linux. It provides a dynamic real-time view of the tasks running in the system. Tiptop is very similar to the top utility, but most of the information displayed comes from hardware counters.

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

Install tiptop on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install tiptop using yum by running the following command:

sudo yum -y install tiptop

Install tiptop 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 tiptop using dnf by running the following command:

sudo dnf -y install tiptop

How To Uninstall tiptop on CentOS 7

To uninstall only the tiptop package we can use the following command:

sudo dnf remove tiptop

References

Summary

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