linux 中cpp如何查看进程的cpu占用率
时间: 2023-10-01 08:10:31 浏览: 95
Linux下如何查看某一进程的CPU占用率_linux进程cpu使用率.zip
在 Linux 中,你可以使用 `top` 命令来查看进程的 CPU 占用率。运行以下命令:
```shell
top
```
这将显示当前系统中运行的进程列表和它们的 CPU 占用率。默认情况下,`top` 命令会实时更新进程列表和相关信息。
要退出 `top` 命令,可以按下键盘上的 `q` 键。
阅读全文