rsync -avhW --no-compress --progress /src/ /dst/
-ais for archive, which preserves ownership, permissions etc.-vis for verbose, so I can see what's happening (optional)-his for human-readable, so the transfer rate and file sizes are easier to read (optional)-Wis for copying whole files only, without delta-xfer algorithm which should reduce CPU load--progressso I can see the progress of large files (optional)