Hi Yankee, I had an ion MB I found to be very good.
I am assuming that your other machine is also an atom based device?
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
gives me ondemand conservative powersave userspace performance on my system, does it give you the same?
Not sure but this is an in depth article that might help you
http://www.ibm.com/developerworks/library/l-cpufreq-2/Combined with this part cpufreq_performance of here
http://blog.peacon.co.uk/wiki/Enabling_power_management_on_DebianI have found the following in /etc/rc.d/init.d/cpufreq and have to wonder if changing the value highlighted in red to the the maximum would work.
I should point out that I have reached (and probably well exceeded) the limit of my knowledge so hope I am not sending you on the wrong path. So please only try this if you are desperate and don't mind blowing up your machine okay? 8-)
There is probably a lot simpler way but I have spent the last 20 minutes looking but not found anything that I can translate to PCLiunxos
Fingers crossed
Tony
#!/bin/bash
#
### BEGIN INIT INFO
# Provides: cpufreq
# Default-Start: 2 3 4 5
# Short-Description: Set CPU frequency settings
# Description: Set CPU frequency settings
### END INIT INFO
# Source function library.
. /etc/rc.d/init.d/functions
RETVAL=0
start() {
gprintf "Setting CPU frequency settings: "
touch /var/lock/subsys/cpufreq
test -f /etc/sysconfig/cpufreq && . /etc/sysconfig/cpufreq
for cpu in /sys/devices/system/cpu/* ; do
[ "x$GOVERNOR" != "x" ] && [ -f $cpu/cpufreq/scaling_governor ] && echo $GOVERNOR > $cpu/cpufreq/scaling_governor
[ "x$MAX_FREQ" != "x" ] && [ -f $cpu/cpufreq/scaling_max_freq ] && echo $MAX_FREQ > $cpu/cpufreq/scaling_max_freq
[ "x$MIN_FREQ" != "x" ] && [ -f $cpu/cpufreq/scaling_min_freq ] && echo
$MIN_FREQ > $cpu/cpufreq/scaling_min_freq
done
success
echo