How To Monitor Linux System Health

1

Displays real-time view of the running system.

top
2

Shows disk space usage in human-readable format.

df -h
3

Displays amount of free and used memory in the system.

free -m
4

Shows how long the system has been running.

uptime
5

Checks if the httpd service is running.

ps aux | grep httpd