Rsync

From PKC
Revision as of 09:44, 17 August 2021 by Benkoo (talk | contribs)
Jump to navigation Jump to search

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

Running rsync in the background

An article showing how to run rsync in the background can be found here:[2]. The instruction to run it in the background can be found here:

nohup rsync -a host.origin:/path/data destiny.host:/path/ &

References