A Linux daemon runs continuously written in Go
Find a file
2023-07-24 16:44:56 +03:00
.gitignore Initial commit 2023-07-08 13:51:35 +03:00
info.go chore 2023-07-17 16:38:56 +03:00
LICENSE Initial commit 2023-07-08 13:51:35 +03:00
README.md go-daemon concept introduction 2023-07-24 16:44:56 +03:00

go-daemon

A Linux daemon runs continuously written in golang. Refer to ahenk-docs/dev for resources




Summary - MakeUseOf

Usually daemons start on system startup and run continuously until the system shuts down. They do NOT send messages to the console or screen in any way.

It is not mandatory but daemon processes are usually named to end with the letter d

  • Initial operations, such as reading configuration files or obtaining necessary system resources, must be performed before the process becomes a daemon