2

I have a Windows filer behind a corporate fire wall and a Linux-based filer in a cloud installation.

I've been attempting do an rsync-over-ssh-tunnel of files from the Windows filer to the Linux filer using rsync and ssh under Cygwin. I'm running in to issues with Windows and its case-insensitive NTFS.

I have apps running, using the Windows filer, that will alter the case of the files on the Windows filer when they access files. Example: A.foo will be changed to a.foo after an application reads the file. From a Windows application point of view this is okay behaviour: A.foo and a.foo are equivalent on a case-insensitive file system.

But from a sync'ing perspective this is causing me trouble. The rsync process doesn't see a.foo as a changed A.foo, but instead see's it as an entirely new file and I end up with A.foo and a.foo on the Linux-based filer after the rsync occurs.

Is there a better way to do an rsync-like synchronization of files on a Windows filer with files on a Linux filer that's as secure as the rsync-over-ssh approach but doesn't have the file case issues?

Zoredache
  • 130,897
  • 41
  • 276
  • 420
Ian C.
  • 1,233
  • 9
  • 11
  • 1
    What command are you using for rsync? If you use the right options rsync can delete the orphaned files. – Zoredache Sep 09 '10 at 18:45
  • NTFS is not case insensitive, the Windows API is by default, you can turn it off through a registry setting; however doing so may (will) break some (many) applications. Applications which rename files with different cases are poorly written; it's too common unfortunately. You're best options are probably to rename the files again (by some automated script) or to hardlink the files so it appears both ways on the Linux server. – Chris S Sep 09 '10 at 18:58
  • @Zoredache: it's the rysnc that comes with the latest Cygwin bundle. The orphaned file deletion is an option but it hurts rsync's usefulness since it should have been doing an incremental copy of A.foo. – Ian C. Sep 09 '10 at 22:00
  • @Chris S: Yea, I don't want to turn off case insensitivity. As you can see I have some silly apps to deal with. I'm considering a force-everything-to-lower-case type script that runs before the rsync call. – Ian C. Sep 09 '10 at 22:01

1 Answers1

1

I don't think rsync can ignore case. Unison has an option for it (and of course it can use ssh for transport). I don't know if it's packaged for Cygwin; it can run natively on Windows.

  • Thanks Giles. Let me take a look at Unison. There was an rsync patch floating around that'll make it ignore case but it comes with its own problems (like a buffer overflow if you use logging while rsync'ing). An alternate tool that works over an ssh tunnel would be preferable. Unison could be it... – Ian C. Sep 09 '10 at 22:03
  • Sorry for the delay. I've tested Unison now and it is definitely doing a better job of handling things. Thanks for the tip! – Ian C. Sep 22 '10 at 15:23