Linux
將所有 cpu 核心永久設置為 PERFORMANCE
Linux 核心似乎發生了一些(愚蠢的)更改,其中 CPU 被阻礙為低功耗設置。
執行 cpufreq-info 我得到:
The governor "ondemand" may decide which speed to use
我看到我可以像這樣更改一個核心:
sudo cpufreq-set -c95 -g performance
但是如何將所有 cpu 核心永久設置為性能(在重新啟動後仍然存在)?
vi /etc/default/cpufrequtils
像這樣:
GOVERNOR="performance"
然後:
sudo systemctl restart cpufrequtils
檢查這個:
cpufreq-info
我不確定它是否適用於 x86 電腦,但它確實適用於 RaspberryPi:
echo performance | sudo tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor