erg, once again, i am at work and unable to test this. You should be able to add an entry to /etc/inittab that will handle starting processes upon boot.
The inittab file describes which processes are started at
bootup and during normal operation (e.g. /etc/init.d/boot,
/etc/init.d/rc, gettys...). Init(8) distinguishes multi-
ple runlevels, each of which can have its own set of pro-
cesses that are started. Valid runlevels are 0-6 plus A,
B, and C for ondemand entries. An entry in the inittab
file has the following format:
id:runlevels:actionrocess
Lines beginning with `#' are ignored.
So you could do that. Or you could do it the really easy way.
Add whatever it is that you want to do, as a service.
the hard way:
Adding a service to a run level
To add a service to a run level, you need to create a symbolic link pointing to that service's script in the init.d directory. When creating the link, be sure to number it so that the service is started at an appropriate time. If the service you're adding requires networking, be sure to assign your new service a number higher than networking, to ensure it will start after the networking scripts have been executed.
To add "lpd" to run level 3, you would use:
ln -s /etc/rc.d/init.d/lpd /etc/rc.d/rc3.d/S64lpd
the easy way is to use the gui that comes with KDE, and probably also with gnome
Goodluck,
Babbing


Reply With Quote
rocess
Bookmarks