pavement

Daemon

From FreeBSDwiki
(Difference between revisions)
Jump to: navigation, search
(change wording a little)
(merge from Daemons)
Line 1: Line 1:
A '''daemon''' is a program that runs in the background, rather than under the direct control of a user.  If you are more familiar with DOS or early Windows, this kind of program would be known to you as a ''TSR'' (''Terminate and Stay Resident'') program.  In NT systems, you would refer to these as ''services''.   
+
A '''daemon''' is a program that runs in the background, rather than under the direct control of a user.  If you are more familiar with DOS or early Windows, this kind of program would be known to you as a ''TSR'' (''Terminate and Stay Resident'') program.  In NT systems, you would refer to these as ''[[services]]''.  Unix users might use the name ''daemon'', ''[[background processes]]'' and ''service'' with rough equivalence, especially when speaking to a general audience.
  
Loosely speaking, a ''daemon'' is any process that runs in the background (instead of interactively).  If an interactive process such as a shell is used to start the ''daemon'', the ''daemon'' continues to run after the interactive process is closed.  In FreeBSD, ''daemons'' are ordinarily started by [[init]] at bootup, and stopped by [[init]] at shutdown.
+
In FreeBSD, programs that are run as daemons will (usually) have a "d" appended to their name, e.g., [[sshd]], [[named]], etc.  Loosely speaking, a ''daemon'' is any process that runs in the background (instead of interactively).  If an interactive process such as a shell is used to start the ''daemon'', the ''daemon'' continues to run after the interactive process is closed.  In FreeBSD, ''daemons'' are ordinarily started by [[init]] at bootup, and stopped by [[init]] at shutdown.
  
Unix users might use the name ''daemon'' and ''service'' with rough equivalence, especially when speaking to a general audience. A "unix service" is never a ''daemon'' (it usually means that access to a unix system is provided), whereas a "Windows service" always means a ''daemon''-like process.
+
The name comes from the old Greek (daimon, ''δαιμων''), referring to inferior spirits that do things the gods would rather not be concerned with - like do work.
  
 
[[Category:FreeBSD Terminology]]
 
[[Category:FreeBSD Terminology]]

Revision as of 11:28, 10 May 2006

A daemon is a program that runs in the background, rather than under the direct control of a user. If you are more familiar with DOS or early Windows, this kind of program would be known to you as a TSR (Terminate and Stay Resident) program. In NT systems, you would refer to these as services. Unix users might use the name daemon, background processes and service with rough equivalence, especially when speaking to a general audience.

In FreeBSD, programs that are run as daemons will (usually) have a "d" appended to their name, e.g., sshd, named, etc. Loosely speaking, a daemon is any process that runs in the background (instead of interactively). If an interactive process such as a shell is used to start the daemon, the daemon continues to run after the interactive process is closed. In FreeBSD, daemons are ordinarily started by init at bootup, and stopped by init at shutdown.

The name comes from the old Greek (daimon, δαιμων), referring to inferior spirits that do things the gods would rather not be concerned with - like do work.

Personal tools