Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Common Usage

rsync ....

Code Block
languagebash
rsync -a -v -e "ssh -c arcfour -o Compression=no -x -z" user@3aims.com:/home/user web10 

-a = Archive mode (add more notes about why to use this).

-v = Verbose.

-e ssh = Specify remote shell to be ssh.

-c arcfour = uses the weakest but fatest encryption that ssh supports.

-o Compression=no = Disable ssh compression as we will be using rsync's own which is more efficient.

-z = Enable rsync's compression.

-x = turns off ssh's X tunneling feature (if you have it on by default).

Command Reference

Remote file copy - Synchronize file trees across local disks, directories or across a network.

...