Friday, November 26, 2010

讓CPU全速執行吧!

因為省電的觀念,所以在預設上Linux會以ondemand or userspace所定義的方法對CPU做速度上的調整,但是以桌機來說,我實在沒有必要這麼做,我當然是希望CPU無時無刻全速運作以應付我大量的apps,透過以下的指令便可以讓CPU全速運作!

全速:
echo "performance" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

低速省電:
echo "powersave" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

userspace:
echo "userspace" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
(需配合cpuspeed daemon)

ondemand:
echo "ondemand" > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

4 comments:

馬克 said...

會燒壞嗎?= ="

Unknown said...

要穩定還是不要改會比較好:)

Y. Chao said...

一般桌機用的CPU沒有speed step之類的功能,有沒有改應該沒有差別?而且,真的有heavy loading的話,on demand也是會切到全速的啊。(其實有applet可以直接用選的)

阿信 said...

現在桌機的CPU也有speed step了,耗電量也會升高或降低。所以還是維持ondemand就好。