Limit CPU Usage on Linux Using cpulimit

yum -y install cpulimit #Install cpulimit

The example below limits the chrome process:

/usr/bin/nohup cpulimit -l 50 -i -v -e chrome >/opt/chrome.log &

The command above limits CPU usage to below 50%

Leave a Comment

Your email address will not be published.