On Fri, Apr 17, 2020 at 11:54:07AM -0400, bruce wrote: > > rsync -avz /home/test/cat test@192.168.125.133:/home/test/cat > test@192.168.125.133's password: > sending incremental file list > rsync: change_dir "/home/test/cat/ /home/test" failed: No such file or > directory (2) > > sent 18 bytes received 12 bytes 6.67 bytes/sec > total size is 0 speedup is 0.00 > rsync error: some files/attrs were not transferred (see previous errors) > (code 23) at main.c(1039) [sender=3.0.6] I don't know if anyone else noticed, but did you see this? > rsync: change_dir "/home/test/cat/ /home/test" failed: No such file or > directory (2) rsync will return a directory in quotes there. Its saying the directory named explicitly '/home/test/cat/ /home/test' (yes, a space between /cat/ and /home) is missing. Now, I'm not seeing that in the rsync command pasted, but rsync seems to think that's the directory you're asking to sync. If this was pre-1990 I'd guess it's a terminal overwrite with weird control characters due to a noisy modem but I'm assuming that Bruce has something newer than a vt102. The only way I'm able to get similar results is by including the space in the right side of the rsync command. $ rsync -avz '/tmp/foo /tmp/bar' myhost:/tmp/test sending incremental file list rsync: change_dir "/tmp/foo /tmp" failed: No such file or directory (2) sent 20 bytes received 12 bytes 64.00 bytes/sec total size is 0 speedup is 0.00 rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1189) [sender=3.1.3] -- Jonathan Billings <billings@xxxxxxxxxx> _______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/users@xxxxxxxxxxxxxxxxxxxxxxx