Computer program that runs as a background process, rather than being under the direct control of an interactive user.
0
votes
2answers
197 views
process works without ampersand but doesn't work with ampersand
I wrote a small script to run as a daemon, everything seems to work when I run the command in unix:
php script.php
everything seems to work correctly, when I terminate that script and us the ...
2
votes
1answer
1k views
Using nohup at /etc/init.d/service
I have been trying to create a daemon using /etc/init.d/myservice and it will call a shell script that contains nohup within the script line.
Will it affect it if I could do service stop later?
1
vote
1answer
693 views
gnome-keyring-daemon couldn't allocate secure memory
I run logcheck on my Debian Linux system to get alerted to unusual lines in my log files, and recently I saw the following in /var/log/messages:
gnome-keyring-daemon: couldn't allocate secure memory ...
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 ...
3
votes
1answer
2k views
rpc.statd running on system not using NFS
I have a Debian machine that gets warnings (via the Tiger automatic auditor) that rcp.statd is listening on such-and-such socket. Googling shows rpc.statd is a daemon used by NFS. As far as I know, ...
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 ...