当前位置:   article > 正文

linux显示当前进程cpu,Linux上提供top、ps命令查看当前cpu、mem使用情况

top -n 1 | grep "cpu(s)

Linux下提供top、ps命令查看当前cpu、mem使用情况,简要介绍如下:

一、使用ps查看进程的资源占用

ps -aux

查看进程信息时,第三列就是CPU占用。

[root@localhost utx86]# ps -aux | grep my_processWarning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQ

root   14415  3.4  0.9   37436  20328  pts/12   SL+  14:18   0:05 ./my_processroot   14464  0.0   0.0   3852   572    pts/3    S+   14:20   0:00 grep my_process

每一列含义如下

USER   PID   %CPU %MEM  VSZ  RSS TTY  STAT   START  TIME   COMMAND

即my_process进程当前占用cpu 3.4%, 内存0.9%

二、top动态查看系统负荷

top -n 1

显示后退出

[root@localhost utx86]# top -n 1top - 14:23:20 up  5:14, 14 users,  load average: 0.00, 0.04, 0.01Tasks: 183 total,   1 running, 181 sleeping,   1 stopped,   0 zombieCpu(s):  1.8%us,  1.4%sy,  0.0%ni, 95.8%id,  0.7%wa,  0.1%hi,  0.2%si,  0.0%stMem:   2066240k total,  1507316k used,   558924k free,   190472k buffersSwap:  2031608k total,       88k used,  2031520k free,  1087184k cached

1、获取cpu占用情况

[root@localhost utx86]# top -n 1 |grep CpuCpu(s):  1.9%us,  1.3%sy,  0.0%ni, 95.9%id,  0.6%wa,  0.1%hi,  0.2%si,  0.0%st

解释:1.9%us是用户占用cpu情况

1.3%sy,是系统占用cpu情况

得到具体列的值:[root@localhost utx86]# top -n 1 |grep Cpu | cut -d "," -f 1 | cut -d ":" -f 21.9%us[root@localhost utx86]# top -n 1 |grep Cpu | cut -d "," -f 21.3%sy

2、获得内存占用情况[root@localhost utx86]# top -n 1 |grep MemMem:   2066240k total,  1515784k used,   550456k free,   195336k buffers

获得内存情况指定列

[root@localhost c++_zp]# top -n 1 |grep Mem | cut -d "," -f 1 | cut -d ":" -f 22066240k total[root@localhost c++_zp]# top -n 1 |grep Mem | cut -d "," -f 21585676k used

三、编程实现现在可以通过程序将cpu使用率、内存使用情况保存到文件中// test.cpp#include #include #include int main(){system("top -n 1 |grep Cpu | cut -d \",\" -f 1 | cut -d \":\" -f 2 >cpu.txt");system("top -n 1 |grep Cpu | cut -d \",\" -f 2 >>cpu.txt");system("top -n 1 |grep Mem | cut -d \",\" -f 1 | cut -d \":\" -f 2 >>cpu.txt");system("top -n 1 |grep Mem | cut -d \",\" -f 2 >>cpu.txt");return 0;}

编译、运行:[root@localhost study]# g++ test.cpp[root@localhost study]# ./a.out[root@localhost study]# cat cpu.txt2.1%us1.5%sy2066240k total1619784k used

可见,信息已经保存到文件中了。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/75671
推荐阅读
相关标签
  

闽ICP备14008679号