Custom Query (2683 matches)
Results (88 - 90 of 2683)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1415 | fixed | dbus could be not optional | ||
Description |
Hello, we do not have dbus available on all machine at JSC. This seems not to be a problem for Xpra. Except, that it filles the logfile with error messages like ^[[33m2017-01-18 16:23:31,519 cannot load dbus helper: No module named dbus^[[0m ^[[31m2017-01-18 16:23:31,534 dbus server error Traceback (most recent call last): File "/usr/local/software/jureca/Stage1/software/Xpra/1.0.1-GCCcore-5.4.0-Python-2.7.12-bare/lib/python2.7/site-packages/xpra/server/dbus/dbus_common.py", line 12, in dbus_exception_wrap v = fn() File "/usr/local/software/jureca/Stage1/software/Xpra/1.0.1-GCCcore-5.4.0-Python-2.7.12-bare/lib/python2.7/site-packages/xpra/x11/server.py", line 1349, in make_dbus_server from xpra.x11.dbus.x11_dbus_server import X11_DBUS_Server File "/usr/local/software/jureca/Stage1/software/Xpra/1.0.1-GCCcore-5.4.0-Python-2.7.12-bare/lib/python2.7/site-packages/xpra/x11/dbus/x11_dbus_server.py", line 7, in <module> from xpra.server.dbus.dbus_server import DBUS_Server, INTERFACE File "/usr/local/software/jureca/Stage1/software/Xpra/1.0.1-GCCcore-5.4.0-Python-2.7.12-bare/lib/python2.7/site-packages/xpra/server/dbus/dbus_server.py", line 7, in <module> from xpra.dbus.helper import dbus_to_native, native_to_dbus File "/usr/local/software/jureca/Stage1/software/Xpra/1.0.1-GCCcore-5.4.0-Python-2.7.12-bare/lib/python2.7/site-packages/xpra/dbus/helper.py", line 7, in <module> import dbus ImportError: No module named dbus^[[0m ^[[31m2017-01-18 16:23:31,538 Error setting up server dbus instance:^[[0m ^[[31m2017-01-18 16:23:31,538 No module named dbus^[[0m |
|||
#1418 | worksforme | cmd line arg "--configdir" | ||
Description |
It would be great to have an command line argument "--configdir" (like it can be found for example in Xorg) to Xpra.
Currently the config directory "conf.d" is fixed to the platform specific paths, which is less flexible.
This would allow to switch between different complex configurations quickly.
Not only directly on the command line, but also inside a wrapper script the configuration could be switched.
(I would like to automatically chose by a wrapper script between different configurations for different login nodes, which share the same filesystem.) |
|||
#1513 | fixed | "--without-service" does not stop Xpra from writing files to /usr/lib | ||
Description |
Hello,
we updated lately to Xpra 1.0.5 using the install option "--without-service" on our system (without root permissions).
Currently we need to patch Xpra as it tries to write to the system directory 1514 #not supported by all distros, but doesn't hurt to install it anyway: 1515 prefix = "/usr/lib" 1516 from xpra.os_util import is_Fedora, is_CentOS 1517 if is_Fedora() or is_CentOS(): 1518 prefix = "/lib" 1519 add_data_files("%s/tmpfiles.d" % prefix, ["tmpfiles.d/xpra.conf"]) 1520 add_data_files("%s/sysusers.d" % prefix, ["sysusers.d/xpra.conf"])
Can you change setup.py that way, that it avoids this if installed with This is related to the ticket: #1383 Best, Jens Henrik |