Ubuntu
Guake在啟動時拋出錯誤
我使用的是 Ubuntu-Server 12.04,但我不確定這是否是 Ubuntu 特有的問題,所以我將其發佈在這裡。
我通過安裝
xinit
和openbox
(使用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
.