Ubuntu

Guake在啟動時拋出錯誤

  • April 20, 2012

我使用的是 Ubuntu-Server 12.04,但我不確定這是否是 Ubuntu 特有的問題,所以我將其發佈在這裡。

我通過安裝xinitopenbox(使用apt-get install)獲得了一個圖形使用者界面。我也安裝guake了(再次使用apt-get install)。但是,當我嘗試guake在終端模擬器(Sakura)中執行時,我收到以下錯誤消息:

Traceback (most recent call last):
 File "/usr/lib/guake/guake.py", line 1356, in <module>
   if not main():
 File "/usr/lib/guake/guake.py", line 1299, in main
   instance = Guake()
 File "/usr/lib/guake/guake.py", line 649, in __init__
   notification.show()
glib.GError: GDBus.Error: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Notifications was not provided by any .service files

我該如何解決這個問題並開始guake執行?

報告表明它是sudo apt-get install notification-daemon.

您需要安裝並執行 DBus;特別是你想用來dbus-launch執行你的 X11 會話。 apt-get install dbus-x11應該安裝守護程序組件和dbus-launch.

引用自:https://unix.stackexchange.com/questions/36925