On Wed, Sep 21, 2005 at 01:35:18PM -0800, Administrator wrote: > Is there an option that I can use during the rsync process that will > give a verbose reading of the file list as it is being contstructed so > that I can see what file/directory the operation is choking on?
If you specify triple verbosity (-vvv), the sender will output a message for every file that gets passed into make_file(). Another approach is to use a utility that displays system-calls (on un*x systems this is something like strace or truss). The rsync website has a debug script that can be used to turn on system-call-tracing for the remote end of the connection (if that is needed, and if your Windows setup supports that). ..wayne.. -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
