Changes between Version 2 and Version 3 of ShadowServer
- Timestamp:
- 07/26/14 10:49:01 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ShadowServer
v2 v3 1 1 = Shadow Server = 2 3 [[BR]] 2 4 3 5 {{{#!div class="box" … … 5 7 6 8 This feature refers to the ability to use an existing display server (an existing session) and use xpra to access it remotely. 9 10 It is supported on all platforms including MS Windows and Mac OS X, but it is not optimized and will cause high CPU load on both the server and the client. 7 11 }}} 8 12 13 9 14 {{{#!div class="box" 10 == Usage Example ==15 == SSH Usage Example == 11 16 12 On *nix, to expose your existing main display session (usually at {{{:0}}}) using a tcp server on port 10000: 17 If you have SSH access to the machine whose display you wish to shadow, simply run from your client: 18 {{{ 19 xpra shadow ssh:HOST:DISPLAY 20 }}} 21 This will connect over SSH, start and xpra shadow server and connect to it. 22 23 The shadow server will be stopped once you disconnect. 24 25 The xpra shadow server will be accessible like any other xpra server through its unix domain socket. (ie: {{{xpra info ssh:HOST:DISPLAY}}}) 26 }}} 27 28 29 {{{#!div class="box" 30 == All Platforms == 31 32 If remote start is not supported as above (as is the case on MS Windows and Mac OS X), or simply if you want to start the shadow server manually (and potentially configure more options). 33 34 To expose your existing main display session (usually found at {{{:0}}} on *nix) using a TCP server on port 10000: 13 35 {{{ 14 36 xpra shadow :0 --bind-tcp=0.0.0.0:10000 15 37 }}} 16 (note: this does not cover [/wiki/Authentication] or [/wiki/Encryption]) 17 38 Notes: 39 * this does not cover [/wiki/Authentication] or [/wiki/Encryption] 40 * MS Windows and Mac OS X do not have X11 display names ({{{:0}}} in the example above), just choose any value you like 18 41 }}}