Quote:
|
Originally Posted by Harishankar
How do you change CPU speed in Linux, by the way? I've never tried that. Any help would be appreciated.
|
I believe it can only be done on mobile based processors (Correct me if im wrong though).
Im personally using 2.6 series kernel. Here's a screenshot of the config under CPU Scaling (CPU SCALING is found under ACPI options)
Experts, please correct me if there are mistakes.
http://img153.imageshack.us/img153/4636/compile0ke.jpg
Then recompile the kernel, load cpufreq_powersave, cpufreq_ondemand modules.
do a #cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
To see available speeds.
Then
#echo 800000 > /sys/devices/system/cpu/cpu0/cpufreq/scaling_min_freq
//indicates to run at 800mhz. Ensure that 800000 is available in scaling_available_frequencies !!
#echo powersave > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
//let the cpu run @ 800
u can also echo 'ondemand' so that the cpu will adjust it's speed automatically.
To see what speed the cpu is running at the moment, you can download a K applet called CPUINFO 0.2
