You are not logged in.
I never noticed that I can take a daemon in rc.conf and put in front of it an "@" to leave it "backgrounded", what is that about?, I could take any advantage doing that?
Arch GNU/Linux 0.7.1 (Noodle)
Linux 2.6.14-archck1
Offline
I never noticed that I can take a daemon in rc.conf and put in front of it an "@" to leave it "backgrounded", what is that about?, I could take any advantage doing that?
backgrounded means it's run like "/usr/bin/someapp &" runs the process as a forked child - giving control immediately back to the caller. That it, if I run "firefox &" from the prompt, firefox starts and I still have the prompt to type in and do things in.
Backgrounding the daemons does the same thing. Because control is given back to the calling script sooner, the net result is that you are able to log in sooner. I personally background almost everything.
Offline
thanxs phrakture, now I get it
Arch GNU/Linux 0.7.1 (Noodle)
Linux 2.6.14-archck1
Offline
it also means you'll have to be carefull about which you background. Example, backgrounding hotplug while loading network would give you problems because network relys on modules being loaded from hotplug. Unless you've explicity listed it in modules, but you get the point.
Offline