Debian: Find out CPU usage using bash(Debian:使用 bash 找出 CPU 使用率)
问题描述
我正在使用 PHP 来读取当前的 CPU 使用率.我在 vServer 上,所以 shell_exec 已启用.
I'm using PHP to read the current CPU usage. I'm on a vServer, so shell_exec is enabled.
我在 ps
上尝试过 grep
,但没有成功.如何使用 bash 读取当前的 % CPU 使用率?
I have tried grep
on ps
, but it didn't work.
How can I read the current % CPU usage using bash?
推荐答案
最简单的方法就是使用 sys_getloadavg
The easiest way is simply to use sys_getloadavg
如果要直接询问操作系统,请使用 uptime
If you want to directly ask the OS, use uptime
$uptimeString = `uptime`;
或任何现有答案 如何在 bash 中做完全相同的事情并用反引号括起来.
Or any of the existing answers to how to do exactly the same thing in bash and just wrap in backticks.
这篇关于Debian:使用 bash 找出 CPU 使用率的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Debian:使用 bash 找出 CPU 使用率
基础教程推荐
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01