我已经运行了在 Ubuntu 桌面上很好的示例 python 代码:
import dbus, gobject
from dbus.mainloop.glib import DBusGMainLoop
from dbus.mainloop.glib import threads_init
import subprocess
from subprocess import call
gobject.threads_init()
threads_init()
dbus.mainloop.glib.DBusGMainLoop( set_as_default = True )
p = subprocess.Popen('dbus-launch --sh-syntax', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
call( "export DBUS_SESSION_BUS_ADDRESS" , shell=True )
call( "export DBUS_SESSION_BUS_PID" , shell=True )
bus = dbus.SessionBus()
# get DBUS objects, do other stuff with SESSION_BUS
# in same time we can start more independent processes with this file
# finaly kill the SESSION_BUS process
在桌面上成功后,我将代码移至仅带有 shell 的服务器版本。dbus-launch 启动进程,但 python dbus.SessionBus() 返回错误,“/bin/dbus-launch 异常终止并出现以下错误:自动启动错误:X11 初始化失败”。
希望当进程以“dbus-launch”启动并成功运行时,SESSION_BUS 和 X11 之间不应该存在严格的依赖关系。错误来自python。
最好的解决方案是干净的 python 或 linux 环境设置,最差但可能可以接受一些假的或虚拟的 X11(我尝试的时候并不幸运)