( apostroph3 | 2011. 05. 02., h – 10:58 )

a legegyszerűbb - szerintem - ha ezt a sort beirod a /etc/rc.local fájlba közvetlebul az 'exit 0' elé.

#!/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.

ps -A | grep -q "ssh-forwarder" && killall  ssh-forwarder 2>/dev/null
start-stop-daemon --start --background --exec /usr/local/bin/ssh-forwarder

# Turn Numlock on for the TTYs:
for tty in /dev/tty[1-6]; do
    /usr/bin/setleds -D +num < $tty
done
unset tty

# maximális felhasználói megszakítások beállítása a legmagasabb értékre (1024)
find /sys /proc/sys -name "max?user?freq" | \
    while read i
do
    echo 1024 > "$i"
done
unset i

setpci -s 00:02.0 F4.B=30

exit 0

mondjuk valahogy igy:)
elég gány megoldás, de egyszerű

vagy úgy ahogy a fenti linkben le van írva