Re: running a script at startup as superuser
Quick and dirty: (what I would try)
Hack your command line into the script /etc/init.d/boot.loadmodules
Code:
case "$1" in
start|restart)
# Read variable for sysconfig and load all mentioned modules
echo Loading required kernel modules
. /etc/sysconfig/kernel
for I in $MODULES_LOADED_ON_BOOT ; do
if ! modprobe -n $I > /dev/null 2>&1 ; then continue ; fi
modprobe $I;
done
modprobe usbserial vendor=0X05c6 product=0x00a0
rc_status -v1 -r
;;
Technology is 'stuff that doesn't work yet.' -- Bran Ferren