Re: How to set absolute path for rsync?

2017-08-30 Thread Paul Slootman via rsync
On Tue 15 Aug 2017, Joe Qiao via rsync wrote: > Thanks so much for the quick reply, Kevin! > > I tried with ssh and --partial-dir, it looks the partial file still will be > stored in local dir, but not in /tmp. > > > Every 1.0s: ls -al /home/joe/rsync/ /tmp/ > Tue Aug 15 17:29:30

Re: How to set absolute path for rsync?

2017-08-15 Thread Joe Qiao via rsync
Thanks so much for the quick reply, Kevin! I tried with ssh and --partial-dir, it looks the partial file still will be stored in local dir, but not in /tmp. Every 1.0s: ls -al /home/joe/rsync/ /tmp/ Tue Aug 15 17:29:30 2017 /home/joe/rsync/: total 408840 drwxr-xr-x 2 root root

Re: How to set absolute path for rsync?

2017-08-15 Thread Kevin Korb via rsync
With rsyncd you can't. You would have to switch to rsync over ssh... rsync -a --delete --delay-updates --partial-dir=/tmp -P /home/joe/rsync/ 10.148.34.28:/home/joe/rsync/ Also, when you use --partial-dir you probably want to also use --temp-dir. On 08/15/2017 07:19 PM, Joe Qiao via rsync