Linux 中使用 cpulimit 限制进程 cpu 使用率

2018-01-07T14:02:53

1、下载

https://github.com/opsengine/cpulimit
下载: cpulimit-master.zip

2、编译

unzip cpulimit-master.zip
cd cpulimit-master/src
修改makefile
CC=arm-hisiv300-linux-gcc
make

3、运行

cpulimit -l 10 run_app.bin
( 限制应用程序 run_app.bin 的 cpu使用率 不超过 10% )
cpulimit -l 10 -p 1000
( 限制系统进程 id 为1000程序 的 cpu使用率 不超过 10% )

注:
单核cpu的使用率范围为0%-100%,四核cpu的使用率范围为0%-400%.
相关工具
nice:以指定的优先级运行程序
renice: 调整以运行进程的优先级

 

Ubuntu:

[codesyntax lang="php"]

apt install cpulimit

[/codesyntax]

当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »
因本文不是用Markdown格式的编辑器书写的,转换的页面可能不符合MIP标准。