On Fri 15 Dec 2006, [EMAIL PROTECTED] wrote: > > I launch it : > > rsync -avvvztog -e ssh /home/dps3/public/Lic* > [EMAIL PROTECTED]:/home/Lic/ --include='*/' > --include='*.lic' --exclude='*'
With such small files, --whole-file may be useful, as looking for diffs is pretty pointless with such small files. Also --inplace could be worth trying, it can save a lot of renaming etc. > And every time i get an error such as : > > recv_files(Lic/file020500101.lic) > recv_generator(Lic/file7250600401.lic,4419) > recv_files(Lic/file020599999.lic) > rsync: mkstemp "/home/Lic/Lic/.file020599999.lic.Z9L0Pw" > failed: Permission denied (13) > I don't understand why i get "Permission Denied" error > destination folders is owned by nobody:nobody You're running rsync as rsyncuser, not as nobody... Paul Slootman -- To unsubscribe or change options: https://lists.samba.org/mailman/listinfo/rsync Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html
