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 使用率。