busctl
(1)Introspect the bus
Options
31--addressADDRESSConnect to the bus specified by ADDRESS instead of using suitable defaults for either the system or user bus (see --system and --user options). Added in version 209.
--show-machineWhen showing the list of peers, show a column containing the names of containers they belong to. See systemd-machined.service(8). Added in version 209.
--uniqueWhen showing the list of peers, show only "unique" names (of the form ":number.number"). Added in version 209.
--acquiredThe opposite of --unique — only "well-known" names will be shown. Added in version 209.
--activatableWhen showing the list of peers, show only peers which have actually not been activated yet, but may be started automatically if accessed. Added in version 209.
--matchMATCHWhen showing messages being exchanged, show only the subset matching MATCH. See sd_bus_add_match(3). Added in version 209.
--sizeWhen used with the capture command, specifies the maximum bus message size to capture ("snaplen"). Defaults to 4096 bytes. Added in version 218.
--listWhen used with the tree command, shows a flat list of object paths instead of a tree. Added in version 218.
-q--quietWhen used with the call command, suppresses display of the response message payload. Note that even if this option is specified, errors returned will still be printed and the tool will indicate success or failure with the process exit code. Added in version 218.
--verboseWhen used with the call or get-property command, shows output in a more verbose format. Added in version 218.
--xml-interfaceWhen used with the introspect call, dump the XML description received from the D-Bus org.freedesktop.DBus.Introspectable.Introspect call instead of the normal output. Added in version 243.
--expect-replyBOOLWhen used with the call command, specifies whether busctl shall wait for completion of the method call, output the returned method response data, and return success or failure via the process exit code. If this is set to "no", the method call will be issued but no response is expected, the tool terminates immediately, and thus no response can be shown, and no success or failure is returned via the exit code. To only suppress output of the reply message payload, use --quiet above. Defaults to "yes". Added in version 218.
--auto-startBOOLWhen used with the call or emit command, specifies whether the method call should implicitly activate the called service, should it not be running yet but is configured to be auto-started. Defaults to "yes". Added in version 218.
--allow-interactive-authorizationBOOLWhen used with the call command, specifies whether the services may enforce interactive authorization while executing the operation, if the security policy is configured for this. Defaults to "yes". Added in version 218.
--timeoutSECSWhen used with the call command, specifies the maximum time to wait for method call completion. When used with the monitor command, since version v257, specifies the maximum time to wait for messages before automatically exiting. If no time unit is specified, assumes seconds. The usual other units are understood, too (ms, us, s, min, h, d, w, month, y). Note that this timeout does not apply if --expect-reply=no is used, when combined with the call command, as the tool does not wait for any reply message then. When not specified or when set to 0, the default of "25s" is assumed for the call com
-N--limit-messagesNUMBERWhen used with the monitor command, if enabled will make busctl exit when the specified number of messages have been received and printed. This is useful in combination with --match=, to wait for the specified number of occurrences of specific D-Bus messages. Added in version 257.
--augment-credsBOOLControls whether credential data reported by list or status shall be augmented with data from /proc/. When this is turned on, the data shown is possibly inconsistent, as the data read from /proc/ might be more recent than the rest of the credential information. Defaults to "yes". Added in version 218.
--watch-bindBOOLControls whether to wait for the specified AF_UNIX bus socket to appear in the file system before connecting to it. Defaults to off. When enabled, the tool will watch the file system until the socket is created and then connect to it. Added in version 237.
--destinationSERVICETakes a service name. When used with the emit command, a signal is emitted to the specified service. Added in version 242.
--userTalk to the service manager of the calling user, rather than the service manager of the system.
--systemTalk to the service manager of the system. This is the implied default.
-H--hostExecute the operation remotely. Specify a hostname, or a username and hostname separated by "@", to connect to. The hostname may optionally be suffixed by a port ssh is listening on, separated by ":", and then a container name, separated by "/", which connects directly to a specific container on the specified host. This will use SSH to talk to the remote machine manager instance. Container names may be enumerated with machinectl -H HOST. Put IPv6 addresses in brackets.
-M--machineExecute operation on a local container. Specify a container name to connect to, optionally prefixed by a user name to connect as and a separating "@" character. If the special string ".host" is used in place of the container name, a connection to the local system is made (which is useful to connect to a specific user's user bus: "--user --machine=lennart@.host"). If the "@" syntax is not used, the connection is made as root user. If the "@" syntax is used either the left hand side or the right hand side may be omitted (but not both) in which case the local user name and ".host" are implied.
-C--capsuleExecute operation on a capsule. Specify a capsule name to connect to. See capsule@.service(5) for details about capsules. Added in version 256.
-l--fullDo not ellipsize the output in list command. Added in version 245.
--jsonMODEShows output formatted as JSON. Expects one of "short" (for the shortest possible output without any redundant whitespace or line breaks), "pretty" (for a pretty version of the same, with indentation and line breaks) or "off" (to turn off JSON output, the default).
-jEquivalent to --json=pretty if running on a terminal, and --json=short otherwise.
--no-pagerDo not pipe output into a pager.
--no-legendDo not print the legend, i.e. column headers and the footer with hints.
-h--helpPrint a short help text and exit.
--versionPrint a short version string and exit.
DESCRIPTION
COMMANDS
The following commands are understood:
list
Added in version 209.
status [SERVICE]
Added in version 209.
monitor [SERVICE...]
Added in version 209.
capture [SERVICE...]
Added in version 218.
tree [SERVICE...]
Added in version 218.
introspect SERVICE OBJECT [INTERFACE]
Added in version 218.
call SERVICE OBJECT INTERFACE METHOD [SIGNATURE [ARGUMENT...]]
Added in version 218.
emit OBJECT INTERFACE SIGNAL [SIGNATURE [ARGUMENT...]]
Added in version 242.
wait [SERVICE] OBJECT INTERFACE SIGNAL
Added in version 257.
get-property SERVICE OBJECT INTERFACE PROPERTY...
Added in version 218.
set-property SERVICE OBJECT INTERFACE PROPERTY SIGNATURE ARGUMENT...
Added in version 218.
help
Added in version 209.
PARAMETER FORMATTING
The call and set-property commands take a signature string followed by a list of parameters formatted as string (for details on D-Bus signature strings, see the Type system chapter of the D-Bus specification[2]). For simple types, each parameter following the signature should simply be the parameter's value formatted as string. Positive boolean values may be formatted as "true", "yes", "on", or "1"; negative boolean values may be specified as "false", "no", "off", or "0". For arrays, a numeric argument for the number of entries followed by the entries shall be specified. For variants, the signature of the contents shall be specified, followed by the contents. For dictionaries and structs, the contents of them shall be directly specified.
For example,
s jawoll
is the formatting of a single string "jawoll".
as 3 hello world foobar
is the formatting of a string array with three entries, "hello", "world" and "foobar".
a{sv} 3 One s Eins Two u 2 Yes b true
is the formatting of a dictionary array that maps strings to variants, consisting of three entries. The string "One" is assigned the string "Eins". The string "Two" is assigned the 32-bit unsigned integer 2. The string "Yes" is assigned a positive boolean.
Note that the call, get-property, introspect commands will also generate output in this format for the returned data. Since this format is sometimes too terse to be easily understood, the call and get-property commands may generate a more verbose, multi-line output when passed the --verbose option.
EXAMPLES
Example 1. Write and Read a Property
The following two commands first write a property and then read it back. The property is found on the "/org/freedesktop/systemd1" object of the "org.freedesktop.systemd1" service. The name of the property is "LogLevel" on the "org.freedesktop.systemd1.Manager" interface. The property contains a single string:
# busctl set-property org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager LogLevel s debug # busctl get-property org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager LogLevel s "debug"
Example 2. Terse and Verbose Output
The following two commands read a property that contains an array of strings, and first show it in terse format, followed by verbose format:
$ busctl get-property org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager Environment
as 2 "LANG=en_US.UTF-8" "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
$ busctl get-property --verbose org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager Environment
ARRAY "s" {
STRING "LANG=en_US.UTF-8";
STRING "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin";
};
Example 3. Invoking a Method
The following command invokes the "StartUnit" method on the "org.freedesktop.systemd1.Manager" interface of the "/org/freedesktop/systemd1" object of the "org.freedesktop.systemd1" service, and passes it two strings "cups.service" and "replace". As a result of the method call, a single object path parameter is received and shown:
# busctl call org.freedesktop.systemd1 /org/freedesktop/systemd1 org.freedesktop.systemd1.Manager StartUnit ss "cups.service" "replace" o "/org/freedesktop/systemd1/job/42684"