<p dir="ltr">Indeed, it's a fuse mount using curlftp. I use rsync because of the differential copy to move only new files. Besides I understand that rsync performs a verification after the copy which is not the case of cp that only uses crc (maybe I'm wrong).<br>

I may use rsync to directly copy files, but I'm not allowed to install rsync y the target server.<br>
Do you know of any limitation of rsync over curlftp?<br>
Regards</p>
<div class="gmail_quote">El ene 28, 2014 6:19 PM, "Matthias Schniedermeyer" <<a href="mailto:ms@citd.de">ms@citd.de</a>> escribió:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
On <a href="tel:28.01.2014" value="+59828012014">28.01.2014</a> 08:35, Juan Pablo Lorier wrote:<br>
> Hi,<br>
><br>
> I have to sync two directories and one is an ftp mount. I had to set a<br>
> different tmp dir as tmp files are not allowed in ftp mounts so I see no<br>
> point in copying things to a temp dir if they won't be used for the<br>
> transfer.<br>
<br>
What do you mean by ftp mount?<br>
fuse?<br>
Is that on Linux or something else?<br>
<br>
If you DON'T sync to a regular filesystem, there are (or can be)<br>
limitations on what kind of basic operations are allowed on a file. So<br>
follows the second questions: Can rsync cope with the limitations. Which<br>
would explain the I/O-error in the other mail, rsync --inplace does<br>
something that isn't allowed/supported.<br>
<br>
<br>
But IFF it isn't a regular filesystem you are syncing to, the value of<br>
using rsync for the job is largely reduced. Rsync's strength for remoted<br>
transfers is "delta transfer" which can't be used in such a setup. In<br>
that setup rsync is reduced to a glorified "cp" (ignoring the capability<br>
to delete files). You could just use cp directly. And with "-u" you also<br>
have the basic capability to not copy files that didn't change in<br>
between runs. (Maybe with an added "-a", or at least<br>
"--preserve=timestamps")<br>
<br>
<br>
<br>
<br>
<br>
<br>
--<br>
<br>
Matthias<br>
</blockquote></div>