this post was submitted on 05 Jul 2023
11 points (100.0% liked)
Sysadmin
5587 readers
1 users here now
A community dedicated to the profession of IT Systems Administration
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
My personal favorite was when we were having issues with an ssh connection and discovered using the
-P
flag, which will allow you to resume transfers that disconnects and-z
that enables compression.So, for instance to get an ssh file transfer with resume support, using compression, you would use:
rsync -avPz -e ssh user@remote-ssh-server:/source destination