Tagged Questions
1
vote
2answers
31 views
Why isn't -r working for rsync on Windows?
I am running this from my command prompt:
rsync -rltz --executability -C --filter=':- .gitignore' -e "ssh -i /cygdrive/c/Users/dstein/.ssh/id_rsa" myfolder/ root@site.local:/path/to/place
I have my ...
1
vote
0answers
119 views
rsync permissions from Windows (cygwin) to Linux server
I'm trying to sync files from development machine running Windows (using cygwin) to staging server running Linux.
I tried rsync -avz --no-p --no-g so synced directories/files would receive default ...
2
votes
1answer
267 views
rsync or rsync-like tool, without cygwin on windows xp machines
Is there a tool with rsync functionality, or maybe rsync itself, without cygwin? that means, without the cygwin dll even. cygwin seems to have a horrible TCP latency problem, and is bugging down ...
1
vote
1answer
194 views
cygwin rsync over ssh very slow
I have 2 machines running Windows Xp SP3. I have cygwin installed on both, version 1.7. I have rsync and ssh installed on both, and configured using default settings as per ssh-host-config and ...
0
votes
0answers
174 views
rsync windows to linux permission denied
Using Command
rsync -avzP --delete --omit-dir-times ../../ ext@mysite.com:/var/www/mysite/
I'm getting
rsync: mkstemp "/var/www/mysite/.." failed: Permission denied (13)
If ext is in the ...
0
votes
1answer
176 views
'rsync' is not recognized as an internal or external command, operable program or batch file
I am VERY new to rsync and cygwin and I'm pretty sure I've installed everything correctly. I am trying to (for now) just rsync two Windows XP Laptops to tranfer files across from the one to the other ...
1
vote
1answer
377 views
rsync error: exit code 23 ( No such file or directory (2) )
Rsync reports error for one file (other files were copied just fine):
rsync: stat "//serverName/destination/.lpt$vpn.251.yiOK8j" failed: No such file or directory (2)
rsync: rename ...
2
votes
1answer
955 views
is there equivalent of rsync in MS powershell?
Rsync is very useful, I don't have to copy all files in a directory. It updates only the newer files.
I use it with cygwin but I think there are some inconsistencies, which are not the main focus of ...
1
vote
0answers
154 views
rsync cygwin also hangs without ssh
I've been using rsync installed via cygwin on two Windows 7 PCs to sync my music and picture collection, but eventually it always stops transferring after some time. I've googled and it seems that ...
1
vote
1answer
241 views
rsync with Cygwin creating weird directories
I'm trying to use rsync to backup data from a local shared drive to a remove server. Both the local machine and the remote server are running Cygwin under Windows XP. I use the following command:
...
0
votes
1answer
382 views
Rsync in bash script not recognizing spaces
An excerpt from a bash script I'm using to backup some photos:
#!/bin/bash
FROM="/cygdrive/f/\"Trip to Austria\""
TO="/cygdrive/s/\"Trip to Austria\""
rsync -av $FROM $TO
When I print the final ...
1
vote
1answer
2k views
Leave ACL handling to Windows with Cygwin rsync
I'm running an rsync command, copying my files from a server to my Windows machine like:
rsync -rt --partial-dir=".rsync" --del rsync://server/a/ a/
Whenever this command creates a directory, it ...
2
votes
1answer
240 views
How to make rsync create constant ACLs under cygwin?
I used a cygwin command like
rsync -rtl --delete --delete-excluded /cygwin/c /mydisk
on Windows XP and ended up with a 94 line long completely insane ACL for /mydisk/c. None of the options rtl ...
0
votes
1answer
825 views
Backup with UTF-8: Windows -> Cygwin -> rsync -> FreeBSD -> ZFS
I backup my windows box to FreeBSD/ZFS using rsync.
In windows I use cygwin/rsync client.
Works well enough. The problem is filenames with international character sets do not make it into backups.
...
0
votes
2answers
522 views
Cygwin rsync protocol error
I get an error with cygwin rsync trying to transfer files between 64bit windows and 64bit linux. Both machines have rsync 3.0.7 installed. I'm running rsync with ssh (no daemon involved). I see that ...
0
votes
1answer
215 views
Atomic transaction rsync on Windows client using cwrsync
Is there a way to do an atomic transaction rsync using cwrsync on Windows?
Meaning: I want the sync to fully complete or 'roll back' in the way that it's not being finalized, for example when a ...
0
votes
2answers
1k views
Rsync via windows XP command prompt
I want to setup rsync on windows XP. I followed the directions here:
http://www.brentnorris.net/rsyncntdoc.html
However, when I start the service, it starts then stops immediately without writing ...
0
votes
2answers
518 views
rsync doesn’t sync files
I'm using rsync(with Cygwin) to sync 2 local folders. The folders contains binary files.
I'm using the following command:
rsync.exe -av dir1/ dir2/
but the files in dir2 are only partially ...
1
vote
1answer
976 views
How can I get rsync on windows via ssh not to hang?
I have MobaSSH installed on two Windows (XP and Vista) machines. When I do rsync over ssh it often hangs. I've read this happens with cygwin/rsync/ssh (MobaSSH is cygin based). Is there any known fix ...