How to monitor system resources in real-time on Linux
Answered
8
What are the best tools to monitor CPU, memory, and disk usage in real-time on a Linux server?
C
Asked by
cloud_arch
Platinum
•
776 rep
1 Answer
17
Built-in tools
# top - classic process viewer
top
# htop - enhanced process viewer
sudo apt install htop
htop
# vmstat - system performance
vmstat 1
# iostat - disk I/O statistics
iostat -x 1
Advanced monitoring
# glances - all-in-one monitoring
pip install glances
glances
# nmon - comprehensive monitoring
sudo apt install nmon
nmon
H
Bronze
•
565 rep
Your Answer
You need to be logged in to answer questions.
Log In to Answer