Page tree

Versions Compared

Key

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

Common Usage

...

Backup and Syc

Most used to perform normal backup,

Code Block
languagebash
rsync --archive --delete --sparse --compress --verbose --itemize-changes --human-readable --progress /home/tempadmin/tmp/source /home/tempadmin/tmp/destination


Straight Copy,

Code Block
languagebash
 rsync --archive --sparse --compress --verbose --itemize-changes --human-readable --progress /home/tempadmin/tmp/source /home/tempadmin/tmp/destination

Details

--archive

Same as -rlptgoD (no -H) 

...

Copy extended attributes and resource forks.

Over SSH Protocol

rsync ....

Code Block
languagebash
# Rsync over the Internet
rsync --archive --verbose --compress --delete --progress -e "ssh -c arcfour -o Compression=no -x" /source/folder remotebackup@earth.com:/home/user:destination-folder 

# Rsync over LAN
# Same but disable all compression.

...