How can I sync files from Windows Server 2008 to a Linux box?

Windows Server can sync files to another active-directory box automatically. Can I do that with Linux too?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

You can setup Samba on the linux server, to make a windows share. You can then use robocopy (use the /mir option to mirror) the files between the two. There are a ton of options with robocopy (which is built into server 2008) to control the number of threads (files copied at the same time) how often its run, what permissions to replicate, etc.

try running:

robocopy /? 

on your windows server for a list of options.

link|improve this answer
feedback

Linux can access Active Directory file shares via cifs, and you can keep the files in sync on your linux system via rsync.

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.