Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to rsync content from local machine (Windows 7 on 64bits) to remote server (Ubuntu 8 on 64bits) and it fails. Any piece of advice is more than welcome as I've already spent too much time with this crap... Thanks in advance!

$ ls -al
total 3
drwxr-xr-x    4 www www     4096 Jun  7 11:04 .
drwxr-xr-x    5 www www     4096 Jun  7 13:13 ..
drwxr-xr-x    7 www www        0 Jun  7 11:04 release-20110607110404

$ rsync -avz ./release-20110607110404/ www@web1:/home/www/
opening connection using: ssh -l www web1 rsync --server -vvlogDtprze.iLsf . /home/www/
select: Bad file number
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(610) [sender=3.0.8]

$ rsync --version
rsync  version 3.0.8  protocol version 30
Copyright (C) 1996-2011 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
Capabilities:
    64-bit files, 64-bit inums, 32-bit timestamps, 64-bit long ints,
    socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
    append, ACLs, no xattrs, iconv, symtimes   
share|improve this question
I should add that I'm using cwRsync (C:\Program Files (x86)\cwRsync\bin\rsync.exe) – eistrati Jun 7 '11 at 17:53
rsync server is running ok on the ubuntu machine? you can ping ubuntu from win-7? checked your firewall rules to make sure the rsync connection can open? – ribram Jun 7 '11 at 18:08
Just in case anyone else runs into this, the problem is caused from the ssh.exe that mingw uses, as in the msysgit above and the ssh.exe that comes with whatever version of rsync you're using on windows. If you change the order these two bin folders are defined in your system variable, you'll get different results.. one will work.. one won't.. – 2potatocakes Jun 14 '11 at 5:57

1 Answer

up vote 1 down vote accepted

Heh, I figured it out, at least found the problem's source... It doesn't work in git bash from msysgit (code.google.com/p/msysgit), but it works in regular windows command line! Weird!!!

share|improve this answer
Thanks. I was actually searching the same error for a different problem and I was also using Git Bash as my command line environment. So, same problem and solution for using Python easy_install on Windows with Git Bash. – Rich Jun 19 '12 at 19:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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