chore(boinc/snippets): add command to disable intel turbo boost

This commit is contained in:
Michele Cereda
2024-06-16 00:08:47 +02:00
parent 1c96c6b945
commit 97b37c557e

View File

@@ -12,5 +12,13 @@ sudo gpasswd -a boinc video
xhost si:localuser:boinc xhost si:localuser:boinc
sudo cpupower frequency-set --governor ondemand sudo cpupower frequency-set --governor ondemand
echo 1 | sudo tee /sys/devices/system/cpu/cpufreq/ondemand/ignore_nice_load
# Do not boost the CPU frequency for niced loads.
# The governor must support it - check if the file exists.
# Usually AMD only
echo 1 | sudo tee '/sys/devices/system/cpu/cpufreq/ondemand/ignore_nice_load'
# Disable (1) turbo boost for Intel CPUs.
echo 1 | sudo tee '/sys/devices/system/cpu/intel_pstate/no_turbo'
sudo systemctl start boinc-client.service sudo systemctl start boinc-client.service