Alternatively, on Linux you can limit the maximum CPU frequency with something like
FREQ=800000 # 800 MHz for i in /sys/devices/system/cpu/cpu[0-9]*; do echo $FREQ > "$i/cpufreq/scaling_max_freq" done
It should work, if I'm reading this correctly: https://www.kernel.org/doc/html/v4.12/admin-guide/pm/intel_p...
Alternatively, on Linux you can limit the maximum CPU frequency with something like