且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

cpulimit 限制进程 CPU 资源 _ 笔记

更新时间:2022-09-17 08:06:37

# http://cpulimit.sourceforge.net/

# cpulimit download
wget http://downloads.sourceforge.net/cpulimit/cpulimit-1.1.tar.gz

#
tar -zxf cpulimit-1.1.tar.gz
cd cpulimit-1.1
make


# cpulimit help

./cpulimit --help
Usage: cpulimit TARGET [OPTIONS...]
TARGET must be exactly one of these:
-p, --pid=N        pid of the process
-e, --exe=FILE     name of the executable program file
-P, --path=PATH    absolute path name of the executable program file
OPTIONS
-l, --limit=N      percentage of cpu allowed from 0 to 100 (mandatory)
-v, --verbose      show control statistics
-z, --lazy         exit if there is no suitable target process, or if it dies
-h, --help         display this help and exit


# cpulimit use 限制 named 只使用 10%的CPU资源
./cpulimit -e named -l 10