Changes between Version 2 and Version 3 of FileTransfers
- Timestamp:
- 12/05/16 13:08:22 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FileTransfers
v2 v3 3 3 = File Transfers = 4 4 5 This feature was experimental and actually mostly hidden in version 0.15, for upload from client to server version 0.16 or later is required. 6 It shares most of the code with [/wiki/Printing]. 5 This feature shares most of the code with [/wiki/Printing]. 7 6 8 This is not meant to replace a network filesystem, onlyto facilitate the transfer of individual files between the client and server.7 This is not meant to replace a network filesystem, it is only there to facilitate the transfer of individual files between the client and server. 9 8 10 9 For more details, see #494 and #1026. 11 Large files may cause traffic hiccups..12 13 To debug, use the flag {{{-d file}}}.14 10 }}} 15 11 12 13 {{{#!div class="box" 14 = Usage = 15 16 Assuming that file-transfers are enabled (see configuration options below). 17 The client can send files to the server using the system tray upload menu: 18 19 [[Image(upload.png)]] 20 21 22 The server can send files to the client using: 23 * the dbus interface: #904 24 * the xpra control interface, ie: 25 {{{ 26 xpra control :10 send-file open '*' 27 }}} 28 To send to a specific client, replace "*" by the correct client UUID. (the client uuid can be seen with: {{{xpra info | grep uuid}}}. 29 30 The "open" flag may not be honoured by the client. 31 32 ---- 33 34 To debug this feature, use the flag {{{-d file}}}. 35 }}} 16 36 17 37 {{{#!div class="box"