1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 17:35:24 +02:00
tldr/pages/linux/dbus-daemon.md
Managor 77e10496de
linux/d*: add option placeholders, mnemonics and refresh more info links (#16996)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2025-06-29 11:32:13 +03:00

28 lines
731 B
Markdown

# dbus-daemon
> The D-Bus message daemon, allowing multiple programs to exchange messages.
> More information: <https://dbus.freedesktop.org/doc/dbus-daemon.1.html>.
- 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`