Changes between Initial Version and Version 1 of Ticket #2068, comment 2
- Timestamp:
- 01/07/19 22:03:47 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2068, comment 2
initial v1 2 2 3 3 I debugged this issue. It's a problem with xpra_Xdummy which detects the wrong Xorg binary: 4 {{{/usr/bin/Xorg}}} is a wrapper that simply delegates to {{{/usr/lib/Xorg.wrap}}}. 4 5 5 /usr/bin/Xorg is a wrapper that simply delegates to /usr/lib/Xorg.wrap.6 {{{/usr/lib/Xorg.wrap}}} is the SUID wrapper which delegates to {{{/usr/lib/Xorg}}}. 6 7 7 /usr/lib/Xorg.wrap is the SUID wrapper which delegates to /usr/lib/Xorg.8 {{{/usr/lib/Xorg}}} is the real executable. 8 9 9 /usr/lib/Xorg is the real executable. 10 11 The ld-linux magic does not work when calling /usr/bin/Xorg - the solution is simple, just call the original (unwraped) Xorg binary by adding: 12 10 The ld-linux magic does not work when calling {{{/usr/bin/Xorg}}} - the solution is simple, just call the original (unwraped) Xorg binary by adding: 11 {{{ 13 12 elif [ -x "/usr/lib/Xorg" ]; then 14 13 XORG_BIN="/usr/lib/Xorg" 14 }}}