From a47a8a88d312ac89896fcb445c28853b99e43ad4 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Tue, 17 Apr 2018 20:38:17 +0100 Subject: [PATCH] dbus-daemon: add page (#2072) --- pages/linux/dbus-daemon.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/linux/dbus-daemon.md diff --git a/pages/linux/dbus-daemon.md b/pages/linux/dbus-daemon.md new file mode 100644 index 0000000000..d8aee28dbd --- /dev/null +++ b/pages/linux/dbus-daemon.md @@ -0,0 +1,27 @@ +# dbus-daemon + +> The D-Bus message daemon, allowing multiple programs to exchange messages. + +- Run the daemon with a configuration file: + +`dbus-daemon --config-file {{path/to/file}}` + +- Run the daemon with the standard per-login-session message bus configuration: + +`dbus-daemon --session` + +- Run the daemon with the standard systemwide message bus configuration: + +`dbus-daemon --system` + +- Set the address to listen on and override the configuration value for it: + +`dbus-daemon --address {{address}}` + +- Output the process id to stdout: + +`dbus-daemon --print-pid` + +- Force the message bus to write to the system log for messages: + +`dbus-daemon --syslog`