2022-06-13 21:00:04 +01:00
|
|
|
---
|
2022-09-06 13:26:44 +01:00
|
|
|
tags:
|
2024-06-16 18:00:05 +01:00
|
|
|
- computer-architecture
|
2022-06-13 21:00:04 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
# Daemons
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
A programme that runs in the background, performing a system function. A daemon
|
|
|
|
typically starts at boot or login without having to be specifically launched and
|
|
|
|
keeps running permanently or until manually stopped.
|
2022-06-13 21:00:04 +01:00
|
|
|
|
|
|
|
The custom is for the process name of daemons to end in the letter `d`.
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
> In the original Greek _daemon_ is translated as 'helper', it doesn't have the
|
|
|
|
> medieval connotation of a dark spirit but was used to denote the actions of a
|
|
|
|
> god rather than the god itself. A person could have a personal _daemon_ which
|
|
|
|
> determines their fate.
|