snippetbashTip
dbus-daemon — The D-Bus message daemon, allowing multiple programs to exchange messages. More information: <https:
Viewed 0 times
theallowingbuscommanddbus-daemondaemonclimessage
linux
Problem
How to use the
dbus-daemon command: The D-Bus message daemon, allowing multiple programs to exchange messages. More information: <https://dbus.freedesktop.org/doc/dbus-daemon.1.html>.Solution
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 --sessionRun the daemon with the standard systemwide message bus configuration:
dbus-daemon --systemSet 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-pidForce the message bus to write to the system log for messages:
dbus-daemon --syslogCode Snippets
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 --sessionRun the daemon with the standard systemwide message bus configuration
dbus-daemon --systemSet 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-pidContext
tldr-pages: linux/dbus-daemon
Revisions (0)
No revisions yet.