How To Install elmon on CentOS 7

In this tutorial we learn how to install elmon on CentOS 7. elmon is Performance monitoring tool

Introduction

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

What is elmon

elmon is a performance monitoring tool for Linux. It provides an ncurses interface as well as the ability to save the data to a CSV file. elmon is based on nmon by Nigel Griffiths and the CSV output is compatible with nmon processing tools. elmon provides performance information on CPU, memory, network, disk, file system usage, etc. If you are familiar with nmon, here are the additional features that elmon supports o Multi-column output. o Interactive Help Menu o Stat sections are displayed in the order that the user enables them o Long term CPU graph will use up the entire width of the screen o Supports subsecond screen refreshes o New Memory/Swap graph o Multiple bug fixes (including several bug fixes supplied by David Baril on nmon forum).

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

Install elmon on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install elmon

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

sudo dnf -y install elmon

How To Uninstall elmon on CentOS 7

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

sudo dnf remove elmon

References

Summary

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