hi all…
i wanna ask about startup on SUSE
how to add command shell on startup?
i have tried to insert the command on /etc/init.d/rc.local and /etc/init.d/boot.local , then i chkconfig --add but it doesn’t work…
oh by the way, command that i want to automatic start is : dbstart
thx b4…
and sorry 4 my english…
lol!
thx 4 the quick respon please_try_again…
but the /etc/init.d/after.local is doesnt exist,
should i create it first? then what should i do next?
firdhauzzz:
thx 4 the quick respon please_try_again…
but the /etc/init.d/after.local is doesnt exist,
should i create it first? then what should i do next?
Yes, create it.
Write this as the first line:
#! /bin/sh
and then the commands to be executed at the end of the init process (which is not the same as the end of the boot process - for what boot.local is intended)
Finally make this file executable:
chmod 744 /etc/init.d/after.local