welcome: please sign in

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
First name of the author of the GNU Manifesto

Edit

DisablingAutoBackgrounding

Many daemons "auto-background" themselves.

Technically this is accomplished by having the daemon call setsid(), then fork() and then having the parent exit(). The result is that the child is re-parented to process 1 (init) and is in its own "session group".

Unfortunately this means that a daemon started via k5start which does this is no longer a child of k5start; this means that k5start cannot do its job.

Here are some hints on how to get various daemons to disable this behavior:

1. general

The runit package also needs to disable this behavior, so they've collected a lot of hints here.

2. eggdrop

Pass in the -n argument

3. apache2

Pass in the -DFOREGROUND argument


CategoryNeedsWork CategoryMemberManual