daemonization is the process of running a process in the background and without being attached to a terminal. Many applications exit when they are detached from the terminal they starter even when they yield no output. Maybe that is why it's still there.
Of course back in the day fork() was all about creating background processes that were running quietly in the background were screen didn't exist yet and terminals were actual machines, not just one more window.
Today System D doesn't like daemonization. IT prefers a process that can be attached somewhere.
internet101010|1 year ago
jeffbee|1 year ago
Isn't that more the job of `nohup`?
kazinator|1 year ago
thwarted|1 year ago