Difference between revisions of "Rsync"

From PKC
Jump to navigation Jump to search
(Created page with "To synchronize two directories on two or more computers, rsync can be a useful solution. This is a reference<ref>https://www.digitalocean.com/community/tutorials/how-to-use-rs...")
 
Line 2: Line 2:
This is a reference<ref>https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories</ref>:
This is a reference<ref>https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories</ref>:
  rsync -a username@remote_host:/home/username/dir1 place_to_sync_on_local_machine
  rsync -a username@remote_host:/home/username/dir1 place_to_sync_on_local_machine
=References=
<references/>

Revision as of 08:43, 17 August 2021

To synchronize two directories on two or more computers, rsync can be a useful solution. This is a reference[1]:

rsync -a username@remote_host:/home/username/dir1 place_to_sync_on_local_machine

References