Linux - NewbieThis forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
What is the way to add new programs to be run at startup of the system
I want Samba server and Vuze program to be automatically started at startup and not to be started manually
also wats the way to stop/kill the already running samba server
The "redhat" way to configure a service to start on boot or not is to use chkconfig. If the program does not have it's own init script you can either write one yourself or just shove the command in /etc/rc.local. I think /etc/rc.local needs to return 0 for success but Im not positive.
So...
chkconfig samba on
to subsuquently start and stop a service the proper way is to use the service command which is really just a wrapper around /etc/init.d/servicename so you can use that too
service samba start
/etc/init.d/samba start
start stop and restart should be valid options for any init script.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
Advertisement
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Click Here to receive a complimentary subscription courtesy of LQ.