top
查看CPU的使用率。
格式
top [-n times] [-t wait_seconds]
说明
[root@sylixos:/root]# help top
show cpu usage information, wait_seconds max is 10s.
top [-n times] [-t wait_seconds]
[root@sylixos:/root]#
此命令有 2 种用法:
- 无参数:表示 cpuus 默认检测 1 次,检测时间是 1s。
- top – n times – t wait_seconds :times 用于设置检测CPU利用率的次数;wait_seconds 用于设置每次检测用的时间,检测时间不得超过 10 秒。如 top – n 3 – t 4,表示检测 CPU 利用率 3 次,每次检测时间为 4s。
备注:
- 和 cpuus 命令的功能用法相同。
样例
[root@sylixos_station:/root]# top
CPU usage checking, please wait...
CPU usage show (measurement accuracy 1.0%) >>
NAME TID PID PRI CPU KERN
---------------- ------- ----- --- ------ ------
t_tshell 4010013 0 150 0.0% 0.0%
t_touch 4010012 0 160 0.0% 0.0%
t_xinput 4010010 0 199 0.0% 0.0%
t_telnetd 401000e 0 160 0.0% 0.0%
t_ftpd 401000d 0 160 0.0% 0.0%
t_snmp 401000c 0 110 0.0% 0.0%
t_netproto 401000b 0 110 0.0% 0.0%
t_netjob 401000a 0 110 0.0% 0.0%
t_sync 4010009 0 252 0.0% 0.0%
t_reclaim 4010008 0 253 0.0% 0.0%
t_hotplug 4010006 0 250 0.0% 0.0%
t_power 4010005 0 254 0.0% 0.0%
t_log 4010004 0 60 0.0% 0.0%
t_except 4010003 0 0 0.0% 0.0%
t_isrdefer 4010002 0 0 0.0% 0.0%
t_itimer 4010001 0 20 0.0% 0.0%
t_idle0 4010000 0 255 99.0% 0.0%
[root@sylixos_station:/root]#
字段说明:
字段 | 说明 |
---|---|
NAME | 线程名 |
TID | 线程 ID |
PID | 线程所属进程 ID |
PRI | 线程优先级 |
CPU | 线程的CPU利用率 |
KERN | 内核利用的CPU利用率 |