It is the first time I use rsync and I got the following error:

rsync error: some files could not be transferred (code 23) at /SourceCache/rsync/rsync-40/rsync/main.c(1400) [generator=2.6.9]

How do I know which files have not been transferred, and why?

Also, is .htaccess.save created by rsync ? I don't have an apache server, just lighttpd.

link|improve this question

belongs to superuser.com – Eugene Mayevski 'EldoS Corp Jan 7 '11 at 9:59
feedback

migrated from stackoverflow.com Jan 7 '11 at 10:33

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 3 down vote accepted

I solved this problem by using the parameter -vv, this puts rsync in a more verbose mode.

link|improve this answer
feedback

Try this:

--size-only
     Normally rsync will not transfer any files that are already the same size and
     have the same modification time-stamp. With the --size-only option, files will
     not be transferred if they have the same size, regardless of timestamp. This is
     useful when starting to use rsync after using another mirroring system which
     may not preserve timestamps exactly.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.