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 주파수 스케일링을 올바르게 비활성화할 수 있는 방법을 알려주시겠습니까? 미리 감사드립니다.

관련 정보