如何让 CPU 在启动时以最大频率运行?我可以编写脚本吗?
答案1
我通常会编辑该/etc/init.d/ondemand
文件并更改echo -n ondemand > $CPUFREQ
为echo -n performance > $CPUFREQ
。
系统performance
在启动期间使用,然后该脚本将其设置为ondemand
启动后。
编辑:您也可以禁用此脚本:sudo update-rc.d -f ondemand remove
答案2
在每个 CPU 的某处添加这个:
echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
话虽如此,我不太确定这是否是一个好主意。;)