3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DBus での BUS 一覧の取得方法

Posted at

はじめに

DBus での BUS 一覧の取得方法について

BUS 一覧の取り型

d-feet を使うのが手っ取り早いです。GUI で system バスと session バスの一覧が閲覧できます。
https://wiki.gnome.org/DFeet

dbus-send を使った方法以下。

  • system バス一覧取得

    dbus-send --system --dest=org.freedesktop.DBus --type=method_call --print-reply /org/freedesktop/DBus org.freedesktop.DBus.ListNames

  • session バス一覧取得方法

    dbus-send --session --dest=org.freedesktop.DBus --type=method_call --print-reply /org/freedesktop/DBus org.freedesktop.DBus.ListNames

おわりに

日本語の DBus の情報が少なすぎる。

参考文献

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?