May 2017
Beginner
552 pages
28h 47m
English
$ rsync -av source_path destination_path
Consider this example:
$ rsync -av /home/slynux/data
slynux@192.168.0.6:/home/backups/data
In the preceding command:
The preceding command will recursively copy all the files from the source path to the destination path. The source and destination paths can be either remote or local.
$ rsync -av source_dir username@host:PATH
To keep a mirror at the destination, run the same rsync command at regular intervals. It will copy only changed files to the destination. ...