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.
Open the project
mkdir build
cmake .. && make
write
./monitoring
to start the project.
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