Results 1 to 3 of 3
i want to set up a half life cs server and i was wondering if it is possible to make run as a daemon. i ve set up a server ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-26-2005 #1Just Joined!
- Join Date
- May 2005
- Posts
- 19
making daemons
i want to set up a half life cs server and i was wondering if it is possible to make run as a daemon. i ve set up a server before but i dont like the idea of it taking up on of my terminals. and how would u do this for any service that wasnt already a daemon
- 05-29-2005 #2Linux Engineer
- Join Date
- Feb 2005
- Posts
- 1,044
You can put a program into the background by starting it with a '&':
If you want it to keep running when you logout, use nohup.Code:someprog -argslist &
Code:nohup someprog -argslist &
- 05-31-2005 #3Just Joined!
- Join Date
- May 2005
- Posts
- 19
cool thanks for the reply.
wehre can i find out more about making programs run in the background. just so i know more of whats going on.


Reply With Quote
