Ja kerrotaan vielä se, etten jaksanut säätää muulla tavalla kuin pienellä skriptillä, joka ladataan käynnistyksen yhteydessä.
asmok@ThinkPad:~$ sudo cat /etc/rc.local
[sudo] password for asmok:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
ifdown br0
#
/root/MakeSomeNoise.sh
exit 0
asmok@ThinkPad:~$ sudo cat /root/MakeSomeNoise.sh
#!/bin/bash
/usr/bin/cpufreq-set -c0 -g performance
#
/usr/bin/cpufreq-set -c1 -g performance
#
/usr/bin/cpufreq-set -c2 -g performance
#
/usr/bin/cpufreq-set -c3 -g performance
#
chmod 777 /dev/hpet
#
chmod 777 /dev/rtc0
# EOF
asmok@ThinkPad:~$
Ystävällisin terveisin Asmo Koskinen.