Re: To run a binary as a daemon

2001-09-01 Thread John Galt
you may want to run it under nohup or screen... otherwise, stdout is going to get a lot of junk, and that means that your active tty gets it if there's no internal redirection. On Sat, 1 Sep 2001 [EMAIL PROTECTED] wrote: >If I wish to run a binary (say, AIRC) as a daemon , what should I do ? >M

Re: To run a binary as a daemon

2001-09-01 Thread Steve Kowalik
On Sat, Sep 01, 2001 at 10:23:35AM +0530, [EMAIL PROTECTED] uttered: > If I wish to run a binary (say, AIRC) as a daemon , what should I do ? > My thoughts are something like: >maybe add into /etc/rc.d , a file with an entry like > if [-x /path/AIRC] > ./path/AIRC #

Re: To run a binary as a daemon

2001-09-01 Thread Eric G. Miller
On Sat, Sep 01, 2001 at 10:23:35AM +0530, [EMAIL PROTECTED] wrote: > If I wish to run a binary (say, AIRC) as a daemon , what should I do ? > My thoughts are something like: >maybe add into /etc/rc.d , a file with an entry like > if [-x /path/AIRC] > ./path/AIRC #Ex

To run a binary as a daemon

2001-09-01 Thread shyamk
If I wish to run a binary (say, AIRC) as a daemon , what should I do ? My thoughts are something like: maybe add into /etc/rc.d , a file with an entry like if [-x /path/AIRC] ./path/AIRC #Execute this Please offer your views on this . I know I have not thought enoug