mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 10:48:44 +00:00
Update cheatsheets
This commit is contained in:
33
linux/dbus-daemon
Normal file
33
linux/dbus-daemon
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# dbus-daemon
|
||||
|
||||
> The D-Bus message daemon, allowing multiple programs to exchange messages.
|
||||
> More information: <https://www.freedesktop.org/wiki/Software/dbus/>.
|
||||
|
||||
- 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`
|
||||
Reference in New Issue
Block a user