Tagged Questions
3
votes
1answer
58 views
Difference between long running process and daemon?
I'm trying to use Forever to keep my nodejs scripts up and running
As per Forever's homepage it says
[Long Running Process]
The forever process will continue to run outputting log messages to ...
4
votes
2answers
1k views
Make daemon start up with Linux
I'm writing a simple daemon application using C/C++ and I want it to start when Linux starts up.
I am a beginner on Linux systems.
I have tried to modify /etc/init.d/skeleton to add a script into ...
2
votes
0answers
132 views
What is the recommended way of start and supervise daemons on Arch Linux? [duplicate]
Possible Duplicate:
Ensure a process is always running
At the moment I use a quick and dirty nohup ... & to start application and database servers. E.g.
su - foo -c "nohup php-cgi -b ...
1
vote
7answers
729 views
What's the cleanest way to schedule autoexec.bat like command in Linux?
I want to create a small script for my Linux system that would do some simple things on PC boot. The script is most likely going to be Python, but maybe I'll resort to C or shell.
The problem is that ...