From 49098cf9c6055b85a4cd0dcb4a0d57fc003310f4 Mon Sep 17 00:00:00 2001 From: PS
Date: Sat, 7 Feb 2026 10:36:49 +0100 Subject: Add doc --- doc/source/system/net/nftables.html | 41 ++++++++++++++ doc/source/system/other/local.html | 69 ++++++++++++++++++++++++ doc/source/system/other/syslog.html | 39 ++++++++++++++ doc/source/system/vfs/mount-binfmt_misc.html | 81 ++++++++++++++++++++++++++++ 4 files changed, 230 insertions(+) create mode 100644 doc/source/system/net/nftables.html create mode 100644 doc/source/system/other/local.html create mode 100644 doc/source/system/other/syslog.html create mode 100644 doc/source/system/vfs/mount-binfmt_misc.html (limited to 'doc/source') diff --git a/doc/source/system/net/nftables.html b/doc/source/system/net/nftables.html new file mode 100644 index 0000000..4bcd42b --- /dev/null +++ b/doc/source/system/net/nftables.html @@ -0,0 +1,41 @@ + + +
+ + + +
+ goetia-linux
+
+ goetia
+
+ Software
+
+ 0x53.net
+
+ nftables is a + oneshot service + to use + nftables +
+nft -f /etc/nftables.rules
+ when it is started.
+ nft flush ruleset
+ when it is stopped.
+
+ goetia-linux
+
+ goetia
+
+ Software
+
+ 0x53.net
+
+ local is a + oneshot service. +
+/etc/local.d/*.up
+ when it is started (typically during boot).
+ /etc/local.d/*.down
+ when it is stopped (typically during shutdown).
+ + The files are executed in random order + and in parallel. +
+
+ An executable file /etc/local.d/echo.up
+ with the content
+
+#!/bin/execlineb -P + +echo "example" ++ would be executed and write "example" to the system log + upon starting the service local. + +
+ An executable file /etc/local.d/echo.down
+ with the content
+
+#!/bin/execlineb -P + +echo "example" ++ would be executed and write "example" to the system log + upon stopping the service local. + +
+ goetia-linux
+
+ goetia
+
+ Software
+
+ 0x53.net
+
+ syslog is a + longrun service + to support legacy applications + that only support logging through a syslog socket. +
+
+ It runs an instance of
+ s6-socklog
+ with the socket set to /dev/log.
+ The logs are then processed by
+ s6-log
+ (see logging directory).
+
+ goetia-linux
+
+ goetia
+
+ Software
+
+ 0x53.net
+
+ mount-binfmt_misc is a + oneshot service + set up the + binfmt_misc + virtual filesystem. +
++ When it is started: +
+/proc/sys/fs/binfmt_misc.
+ /etc/binfmt.d/*
+ #,
+ it tries to apply the line
+ as a registration string as defined
+ here
+ under the following conditions:
+ name fields are duplicated,
+ the last one processed will be applied.
+ + When it is stopped: +
+/proc/sys/fs/binfmt_misc.
+
+ A file /etc/binfmt.d/wine.conf
+ with the content :DOSWin:M::MZ::/bin/wine:
+ would make windows binaries be executed
+ using wine automatically.
+