如何禁用CPU的動態調頻功能
1. 如何查看當前OS是否開啟了動態調頻的功能
www.2cto.com
在shell中執行,查看所有core的主頻是否是CPU的最大主頻:grep -E '^model name|^cpu MHz' /proc/cpuinfo
也可以通過: lsmod | grep cpufreq_ondemand 來查看 cpufreq_ondemand 模塊是否被加載
還可以通過: service --status-all | grep cpuspeed 來查看cpuspeed服務是否開啟
2. 如何禁用CPU的動態調頻的功能
方法一: 在BIOS中關掉此功能 www.2cto.com
開機後進入BIOS,找到performance選項,在speedset子選項中你會看到你的CPU動態調頻
方法二: 在OS中禁用cpuspeed服務
service cpuspeed stop
chkconfig --del cpuspeed
按上述兩種方法操作後,建議再通過1中介紹的方法確認下動態調頻已經被禁用!