I want to rsync something from/to my Synology DS214Play:
1 2 3 4 5 6 7 |
$ ssh root@192.168.11.11 ls / bin ... $ rsync root@192.168.11.11:/ Permission denied, please try again. rsync: connection unexpectedly closed (0 bytes received so far) [Receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(226) [Receiver=3.1.2] |
To make rsync works, ‘–rsync-path=/usr/syno/bin/rsync’ should be set from client side.
1 2 3 4 5 |
rsync --rsync-path=/usr/syno/bin/rsync root@192.168.11.11:/ drwxr-xr-x 4,096 2016/03/17 11:24:27 . ... drwxr-xr-x 4,096 2015/10/30 05:15:35 bin ... |
Rsync to Synology by @sskaje: https://sskaje.me/2016/03/rsync-synology/
Link to this post!