This is the second milestone project of the C++ Nanodegree program. It is simply the Windows task manager
but for linux. The project is based on the ncurses library and the Linux system data. The project is a system monitor that displays the CPU utilization, memory utilization, and the running processes on the system in a terminal window. It also displays the total running time of the system and the running time of each process and can be further extended to display more system data.
On linux mint or any linux distribution that is based on Ubuntu
- Clone the project repository:
git clone repo-link
- Navigate to the project directory
- Create a build directory and navigate to it:
md build
- Run cmake and make
cmake ..
make