I need to recursively copy a folder from a Ubuntu remote server where I have ssh
access. I don't want to follow symbolic links, nor to copy permissions/owner/group, because my client system (Ubuntu too) doesn't have the same users as the server.
This rsync
solution could be the best one.
But the server does not have rsync
and I can't install it there; so that command gives me error.
Is there another way to copy the remote folder?
rsync
executable ... it does not need root permissions to work your own files – Skaperen May 20 '15 at 11:22~/bin
dir, and used--rsync-path=/home/user/bin/rsync
on local rsync command. worked a treat. – bhu Boue vidya Feb 05 '17 at 08:40