Ich verwende Ubuntu 20.04 und folgedieses Tutorialum die CPU-Frequenzskalierung zu deaktivieren.
Ich habe getan:
sudo systemctl disable ondemand
sudo systemctl enable cpufrequtils
sudo sh -c 'echo "GOVERNOR=performance" > /etc/default/cpufrequtils'
sudo systemctl daemon-reload && sudo systemctl restart cpufrequtils
DannNeustartdann habe ich den Status GOVERNOR
für jede CPU geprüft 0-->11
und sehe den Modus als performance
. Wenn ich jetzt mit überprüfe, $ cpufreq-info
erhalte ich:
analyzing CPU 11:
driver: intel_pstate
CPUs which run at the same hardware frequency: 11
CPUs which need to have their frequency coordinated by software: 11
maximum transition latency: 4294.55 ms.
hardware limits: 800 MHz - 4.10 GHz
available cpufreq governors: performance, powersave
current policy: frequency should be within 800 MHz and 4.10 GHz.
The governor "performance" may decide which speed to use
within this range.
current CPU frequency is 800 MHz.
Das Gleiche gilt für alle CPUs von 0 --> 11
. Können Sie mir bitte sagen, wie ich die CPU-Frequenzskalierung richtig deaktivieren kann? Vielen Dank im Voraus.