Changes between Version 32 and Version 33 of FAQ
- Timestamp:
- 01/13/14 06:19:16 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v32 v33 53 53 * How do I use mmap with different users? 54 54 Please see the {{{--mmap-group}}} option: the two users need to be in the same group, the mmap file created by the client will use the group-id of the server socket file. You must generally also use the {{{--socket-dir}}} option to place the socket in a location which is available to both users (ie: {{{/tmp}}}) 55 * How do I enable {{{OpenGL}}} or other X11 extensions on the server?56 Please see [/wiki/Xdummy Xdummy], for acceleration see [http://www.virtualgl.org/ virtualgl]57 55 * How do I theme my application? 58 56 That depends on the application. GTK2 applications can be themed by setting the GTK2_RC_FILES environment variable, ie: … … 68 66 * "{{{Message: pygobject_register_sinkfunc is deprecated (GstObject)}}}" 69 67 This harmless warning comes from your distribution's python-gstreamer build, sadly it cannot be avoided. 70 * "{{{No OpenGL_accelerate module loaded}}}"71 You can safely ignore this warning, it only means that some {{{OpenGL}}} operations won't be accelerated.72 68 * "{{{Xlib: extension "RANDR" missing on display}}}" and "{{{Randr not supported: X server does not support required extension Randr}}}" 73 69 The virtual framebuffer (typically Xvfb) does not support Randr, this may cause some display problems, try using [/wiki/Xdummy Xdummy] instead … … 95 91 The key had expired. Try re-importing the [http://xpra.org/gpg.asc updated key]. 96 92 On Debian you may have to delete the key ({{{apt-key -d}}}) before adding it again. 97 * I get some {{{OpenGL}}} related warnings or errors: 93 * During installation I see warnings like these: 94 {{{ 95 chcon: can't apply partial context to unlabeled file 96 }}} 97 If you have disabled {{{SELinux}}} you can ignore those warnings, otherwise you may need to relabel your filesystem and ensure that the xpra codecs mentioned in those warnings are labelled correctly to prevent runtime codec failures: {{{chcon -t texrel_shlib_t CODECFILE}}} 98 }}} 99 100 101 {{{#!div class="box" 102 == OpenGL Issues == 103 * How do I enable {{{OpenGL}}} or other X11 extensions on the server? 104 Please see [/wiki/Xdummy Xdummy], for acceleration see [http://www.virtualgl.org/ virtualgl] 105 * "{{{No OpenGL_accelerate module loaded}}}" 106 You can safely ignore this warning, it only means that some {{{OpenGL}}} operations won't be accelerated. Or you can install the required module: {{{OpenGL_accelerate}}} 107 * I get some {{{OpenGL}}} related warnings/errors at runtime: 98 108 {{{ 99 109 ImportError: cannot import name GL … … 117 127 import OpenGL; from OpenGL.GL import GL_VERSION, GL_EXTENSIONS;' 118 128 }}} 119 * During installation I see warnings like these:120 {{{121 chcon: can't apply partial context to unlabeled file122 }}}123 If you have disabled {{{SELinux}}} you can ignore those warnings, otherwise you may need to relabel your filesystem and ensure that the xpra codecs mentioned in those warnings are labelled correctly to prevent runtime codec failures: {{{chcon -t texrel_shlib_t CODECFILE}}}124 129 }}} 125 130