--- title: Basic rsync commands description: Basic rsync commands tags: ["rsync"] --- I use these rscync commands regularly to sync local data and remote servers: ```console rsync -avz --progress /local/path /remote/path ``` `a` is archive mode, which keeps permissions, timestamps, symlinks etc, `v` means verbose and shows transfer progress in a human readable format, `z` compresses data during send and `---progress` shows files transer progress.