Double-check that CPU frequency scaling is enabled and set to OnDemand.
The following directories should exist:
/sys/devices/system/cpu/cpu0/cpufreq/
/sys/devices/system/cpu/cpu1/cpufreq/
If they don't exist, enter
modprobe powernow-k8 as root to enable CPU frequency scaling on your AMD CPU.
Then enter:
Code:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
cat /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
Each time, the output should be "ondemand." If it's not, enter:
Code:
echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo ondemand > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor
Put the echo commands, and the modprobe command if needed, in your startup files.