mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
dbus-daemon: add page (#2072)
This commit is contained in:
parent
1fd030ef01
commit
a47a8a88d3
1 changed files with 27 additions and 0 deletions
27
pages/linux/dbus-daemon.md
Normal file
27
pages/linux/dbus-daemon.md
Normal file
|
@ -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`
|
Loading…
Add table
Reference in a new issue