如何查看centos系统cpu⼀内存使用情况

2024-11-25 13:10:37
推荐回答(2个)
回答1:

top, htop 命令可以查看系统负载,内存使用状态,系统进程,总进程数,线程数,开机时间swap 使用状态。线程、进程状态以及数量。区别是 top 装机自带,htop需要安装(centos 需要添加EPEL源 yum install epel-release -y),top偏文字,htop片图形化,换句话说 htop看起来比top命令方便。两者都支持 cpu使用时间,内存占用等特定排序。
free 命令可以查看 内存、swap使用状态 一般用 free -m ,free -h命令。
? —— free -m
total used free shared buff/cache available
Mem: 740 383 196 6 160 212
Swap: 1535 112 1423
? —— free -h
total used free shared buff/cache available
Mem: 740M 386M 193M 6.9M 160M 208M
Swap: 1.5G 112M 1.4G

回答2:

top命令