用ps命令找到程序的对应进程号
ps -ef | grep java
image.png
方式一:top 命令
可以动态地获取占用率信息
top -p 10238
image.png
方式二:ps 命令
ps -aux | grep 10238
image.png
- 查看内存占用前10名的程序
ps aux | sort -k4,4nr | head -n 10
ps -ef | grep java
image.png
可以动态地获取占用率信息
top -p 10238
image.png
ps -aux | grep 10238
image.png
ps aux | sort -k4,4nr | head -n 10
本文标题:Linux命令-查看指定程序RAM内存占用率和CPU占用率的两种
本文链接:https://www.haomeiwen.com/subject/szfcwltx.html
网友评论