cpulimit
是一个用于限制进程 CPU 使用率的实用程序
在 Debian/Ubuntu 系统上安装 cpulimit:
sudo apt-get update
sudo apt-get install cpulimit
在 CentOS/RHEL 系统上安装 cpulimit:
sudo yum install epel-release
sudo yum install cpulimit
在 Fedora 系统上安装 cpulimit:
sudo dnf install cpulimit
配置 cpulimit:
安装完成后,您可以使用 cpulimit
命令来限制进程的 CPU 使用率。以下是一些常见的用法示例:
cpulimit -e my_process -l 50
cpulimit -p 12345 -l 30
cpulimit -b -e my_process -l 50
请注意,这些命令需要 root 权限才能运行。在使用 cpulimit 时,请确保您了解每个选项的作用,以便正确地限制进程的 CPU 使用率。