hi
A small tip to create rc.local in SuSE
login as root
cd /etc/init.d
create a file called rc.local e.g pico rc.local
first line of rc.local should be
#! /bin/sh
next type your commands that you want to start after the os starts
save the file
type chmod +x rc.local
if you start the system in init5 type
cd rc5.d
ln -svf ../rc.local S99rc.local
the next time that you start your PC the rc.local will run automaticaly
if you start the system in text mode (init3)
change the rc5.d to rc3.d