Link to home
Start Free TrialLog in
Avatar of rastafaray
rastafarayFlag for United States of America

asked on

File Sync Copy Utility at the Block Level Only

is there a copy or FTP utility command line or GUI that will sync files @ the block level, the delta, only the part of the file that has changed not the entire file?

thank you.

winXP,2K,2003
ASKER CERTIFIED SOLUTION
Avatar of robocat
robocat

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rastafaray

ASKER

thank you r.

my assumption is that rSync works with rSyncClient/Server?   i.e., rSync Client wont work w/FTP server?

thank you
Avatar of robocat
robocat

Rsync can be used client/server style. It can also be used in a kind of peer to peer fashion over ssh or using file shares.
Just as a note rsync for Windows usually depends on Cygwin libraries and you may not want to install these on your server (I find the install messy).

rsync doesn't copy or understand most of the NTFS attributes as it's not a native Windows tool.

Depending on what you want to do you could try Super Flexible File Copier http://www.superflexible.com/, which copies file deltas (only the changes to a file) over FTP and various other methods (I'm about to test it, but have not used). It looks quite good at first impressions.

Unison http://www.cis.upenn.edu/~bcpierce/unison/ is native Windows app and understands NTFS (I've not tried it - use in production at your own risk)

Or DeltaCopy http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp - this is a Windows wrapper around rsync which is done quite well and can run as a service. Under the hood I believe it still uses Cygwin and rsync however, and at a guess it may not understand NTFS attributes though I've not tested.

Another method is to sync using rsync (or variant) then use a Windows tool like Microsoft Robocopy to copy just the NTFS attributes over the sync'd files (part of Windows Server 2003 Resource Kit Tools http://www.microsoft.com/downloads/details.aspx?FamilyID=9D467A69-57FF-4AE7-96EE-B18C4790CFFD&displaylang=en) e.g. use:
     ROBOCOPY <source> <destination> /XO /XN /XC /E /COPY:ATSOU
To copy NTFS attribs without modifying actual file content.

thank you kibatsu