Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.15 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.15 KB

SETUP

Description of the project

The main goal of this project was to develop an linux utility program for monitoring the system. The key concepts is that the system should work from terminal and display the CPU utilization, RAM usage and so on.

How to run a project

Open the project

mkdir build
cmake .. && make

write

./monitoring

to start the project.

Additional information if you have any problems

If any error occurs, make sure you have installed the ncurses library.

Or detele build folder:

rm -rf build

and run the following command again:

mkdir build && cd build && cmake .. && make

Also make sure if you have ncurses library installed on your system. If not, you can install it by running the following command:

sudo apt-get install libncurses5-dev libncursesw5-dev

More details about the project check the following link

Reference