Easy hack.
1. Install cpufrequtils.
2. Run this in a terminal window
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
and you'll get a list of frequencies your processor supports. Leave the terminal window open.
3. As root, edit /etc/init.d/cpufrequtils
4. Find
GOVERNOR="ondemand"
and change to
GOVERNOR="performance"
5. Find
MIN_SPEED="0"
and paste the desired frequency from step 1 above in place of the zero.
6. Save the file.
7. Reboot and enjoy!
1. Install cpufrequtils.
2. Run this in a terminal window
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
and you'll get a list of frequencies your processor supports. Leave the terminal window open.
3. As root, edit /etc/init.d/cpufrequtils
4. Find
GOVERNOR="ondemand"
and change to
GOVERNOR="performance"
5. Find
MIN_SPEED="0"
and paste the desired frequency from step 1 above in place of the zero.
6. Save the file.
7. Reboot and enjoy!
Comment