I'm having server with 9700K and want to enable turbo-boost to get 4.9 GHz.
I've installed cpufrequtils and set performance mode.
Via 'cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq' I'm getting 3.6 GHz.
Using Ubuntu 18.04.3 LTS.
I'm having server with 9700K and want to enable turbo-boost to get 4.9 GHz.
I've installed cpufrequtils and set performance mode.
Via 'cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq' I'm getting 3.6 GHz.
Using Ubuntu 18.04.3 LTS.
cat /sys/devices/system/cpu/intel_pstate/no_turbo
needs to show a 0
. To make it 0
do ...
sudo -i
echo "0" | tee /sys/devices/system/cpu/intel_pstate/no_turbo
exit
locate intel_pstate
and see where it is)
– Rinzwind
Aug 06 '19 at 12:38
yes in the bios is disabled due to incompatibility with mother board. We can't enable it because system will not boot
. So in this case i'm not enable it?
– Viktors Baikers
Aug 06 '19 at 13:05
abhayp@abhayp:~$ sudo -i root@abhayp:~# echo "0" | tee /sys/devices/system/cpu/intel_pstate/no_turbo 0 tee: /sys/devices/system/cpu/intel_pstate/no_turbo: Operation not permitted root@abhayp:~# exit logout
– Abhay Patil
Jun 16 '20 at 20:06
tee: /sys/devices/system/cpu/intel_pstate/no_turbo: Operation not permitted
– Viktors Baikers Aug 06 '19 at 12:32