protocol version mismatch — is your shell clean?
(see the rsync man page for an explanation)
rsync error: protocol incompatibility (code 2) at compat.c(174) [sender=3.1.0]
Are you trying to rsync to a valid shell user?
protocol version mismatch — is your shell clean?
(see the rsync man page for an explanation)
rsync error: protocol incompatibility (code 2) at compat.c(174) [sender=3.1.0]
Are you trying to rsync to a valid shell user?
Moving 500Gb from a server to another isn’t easy!
Especially with thousands of files to move….
I was using scp but connection most of the times was reseted and all that kinda of sh*ts.
rsync does the job. Its awesome. It syncs folders from server1 with server2 and with -z
rsync -avz /home/www/host1/tools.* [email protected]:/home/www/host1
-v, --verbose increase verbosity
-a, --archive archive mode; same as -rlptgoD (no -H)
-z, --compress compress file data during the transfer
Read more at http://linuxcommand.org/man_pages/rsync1.html