38 | | wget https://xpra.org/src/xpra-2.2.5.tar.xz |
39 | | tar -Jxf xpra-2.2.5.tar.xz |
40 | | rm xpra-2.2.5.tar.xz |
41 | | cd xpra-2.2.5/ |
42 | | python2 ./setup.py build |
43 | | python2 ./setup.py install |
44 | | }}} |
45 | | }}} |
46 | | |
47 | | |
48 | | {{{#!div class="box" |
49 | | == Fixup Xvfb Path == |
50 | | |
51 | | The Raspbian Stretch distribution is based on Debian Stretch, but uses different Xorg workarounds, so we have to manually update the Xorg path detected during the build. |
52 | | |
53 | | Edit {{{/usr/local/etc/xpra/conf.d/55_server_x11.conf}}} and change: |
54 | | {{{ |
55 | | xvfb = /usr/lib/xorg/Xorg -noreset -novtswitch ... etc |
56 | | }}} |
57 | | to |
58 | | {{{ |
59 | | xvfb = /usr/bin/Xorg -noreset -novtswitch ... etc |
| 38 | wget https://xpra.org/src/xpra-3.0.8.tar.xz |
| 39 | tar -Jxf xpra-3.0.8.tar.xz |
| 40 | rm xpra-3.0.8.tar.xz |
| 41 | cd xpra-3.0.8/ |
| 42 | python3 ./setup.py build |
| 43 | python3 ./setup.py install |