When should I use a dedicated daemon instead of a process?
It is said that a daemon has no controlling terminal. A process is a running program. At a particular instant of time, it can be either running, sleeping, or zombie (a process that completed its task, but waiting for its parent process to accept the return value). What is difference between daemon and process? It is said that a daemon …