Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== rsync Cheatsheet ====== Part of [[engineering:computer_science:linux:linux|Linux]] ^Command^Description^Command Example^Options Expanded| |rsync -rvP * user@remote-host:/mnt/dir|Sync directory with remote host directory|<code> rsync -rvP --inplace * user@remote-host:/mnt/dir </code> |-r - Recursive -v - Verbose -P - Progress Bar| |rsync --progress -avz -e "ssh -i /home/user/privateKey" remoteUser@remoteTarget:/home/remoteUser /mnt/local/destination|Uses a private Key to authenticate with a remote server (SSH Keyless)|<code> rsync --progress -avz -e "ssh -i /home/user/privateKey" remoteUser@remoteTarget:/home/remoteUser /mnt/local/destination </code>| | \\ CKG Edit engineering/computer_science/linux/rsync_cheatsheet.txt Last modified: 2024/08/16 13:56by carlossousa