Skip to content

Instantly share code, notes, and snippets.

@AysadKozanoglu
Last active July 31, 2019 14:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AysadKozanoglu/fd1803412e1ec8c914657d3c66021bcd to your computer and use it in GitHub Desktop.
Save AysadKozanoglu/fd1803412e1ec8c914657d3c66021bcd to your computer and use it in GitHub Desktop.
rsync best fast file transfer muster (90MB/s on a 1Gbit NIC)

#auhtor: Aysad Kozanoglu

realizing a file transfer over 50MB-90MB/s on 1Gbit NIC

from remote to local

rsync -avHAXx --numeric-ids --progress -e "ssh -T -c arcfour -o Compression=no -x" user@[source]:[source_dir] [dest_dir]

from local to remote

rsync -avHAXx --numeric-ids --progress -e "ssh -T -c arcfour -o Compression=no -x" [source_dir] [dest_host:/dest_dir]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment