engineering:computer_science:linux:rsync_cheatsheet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
engineering:computer_science:linux:rsync_cheatsheet [2024/08/16 13:56] – removed - external edit (Unknown date) 127.0.0.1engineering:computer_science:linux:rsync_cheatsheet [2024/08/16 13:56] (current) – ↷ Links adapted because of a move operation carlossousa
Line 1: Line 1:
 +====== 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>| |
 +
 +\\
 +