CPU 周波数スケーリングを無効にする Ubuntu 20.04

CPU 周波数スケーリングを無効にする Ubuntu 20.04

私はUbuntu 20.04を使用しており、このチュートリアルCPU 周波数スケーリングを無効にします。

私は以下のことをやりました:

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

それからリブートGOVERNOR次に、各 CPUの状態を確認し0-->11、モードが であることを確認しました。performanceここで、 を使用して確認すると、次のように$ cpufreq-infoなります。

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.

のすべての CPU に同じです0 --> 11が、CPU 周波数スケーリングを正しく無効にする方法を教えてください。よろしくお願いします。

関連情報