home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-Update.iso / OpenStep / unix / connectivity / filetransfer / rsync.1.6.3.README < prev   
Encoding:
Text File  |  1997-12-16  |  3.6 KB  |  107 lines

  1.  
  2. NOTE:  The rsync.1.6.3.sm.NIH.tar.gz archive contains rsync sources specifically configured
  3. and modified to be built under OpenStep 4.2/Mach-- it should work under NS33, as well.  If you
  4. have any problems, please let me know: <bbum@codefab.com>. 
  5.  
  6. WHAT IS RSYNC?
  7. --------------
  8.  
  9. rsync is a replacement for rcp that has many more features.
  10.  
  11. rsyns uses the "rsync algorithm" which provides a very fast method for
  12. bringing remote files into sync. It does this by sending just the
  13. differences in the files across the link, without requiring that both
  14. sets of files are present at one of the ends of the link beforehand.
  15. At first glance this may seem impossible because the calculation of
  16. diffs between two files normally requires local access to both
  17. files. 
  18.  
  19. A technical report describing the rsync algorithm is included with
  20. this package. 
  21.  
  22.  
  23. USAGE
  24. -----
  25.  
  26. Basically you use rsync just like rcp, but rsync has many additional options.
  27.  
  28. Here is a brief description of available options:
  29.  
  30. -v, --verbose            increase verbosity
  31. -c, --checksum           always checksum
  32. -a, --archive            archive mode (same as -rlptDog)
  33. -r, --recursive          recurse into directories
  34. -b, --backup             make backups (default ~ extension)
  35. -u, --update             update only (don't overwrite newer files)
  36. -l, --links              preserve soft links
  37. -H, --hard-links         preserve hard links
  38. -p, --perms              preserve permissions
  39. -o, --owner              preserve owner (root only)
  40. -g, --group              preserve group
  41. -D, --devices            preserve devices (root only)
  42. -t, --times              preserve times
  43. -S, --sparse             handle sparse files efficiently
  44. -n, --dry-run            show what would have been transferred
  45. -x, --one-file-system    don't cross filesystem boundaries
  46. -B, --block-size SIZE    checksum blocking size
  47. -e, --rsh COMMAND        specify rsh replacement
  48.     --rsync-path PATH    specify path to rsync on the remote machine
  49. -C, --cvs-exclude        auto ignore files in the same way CVS does
  50.     --delete             delete files that don't exist on the sending side
  51. -I, --ignore-times       don't exclude files that match length and time
  52. -z, --compress           compress file data
  53.     --exclude FILE       exclude file FILE
  54.     --exclude-from FILE  exclude files listed in FILE
  55.     --suffix SUFFIX      override backup suffix
  56.     --version            print version number
  57.  
  58.  
  59. SETUP
  60. -----
  61.  
  62. Rsync uses rsh or ssh for communication. It does not need to be setuid
  63. and requires no special privilages for installation. It does not
  64. require a inetd entry or a daemon. You must, however, have a working
  65. rsh or ssh system. Using ssh is recommended for its security
  66. features. 
  67.  
  68. To install rsync, first run the "configure" script. This will create a
  69. Makefile and config.h appropriate for your system. Then type
  70. "make". 
  71.  
  72. Once built put a copy of rsync in your search path on the local and
  73. remote systems (or use "make install"). That's it!
  74.  
  75.  
  76. MAILING LIST
  77. ------------
  78.  
  79. There is a mailing list for the discussion of rsync and its
  80. applications. It is open to anyone to join. I will announce new
  81. versions on this list. 
  82.  
  83. To join the mailing list send mail to listproc@samba.anu.edu.au with
  84. no subject and a body of "subscribe rsync Your Name".
  85.  
  86. To send mail to everyone on the list send it to rsync@samba.anu.edu.au
  87.  
  88.  
  89. COPYRIGHT
  90. ---------
  91.  
  92. Rsync was written by Andrew Tridgell and Paul Mackerras, and is
  93. available under the GPL.
  94.  
  95. Andrew.Tridgell@anu.edu.au
  96. paulus@cs.anu.edu.au
  97.  
  98.  
  99. AVAILABILITY
  100. ------------
  101.  
  102. The main ftp site for rsync is ftp://samba.anu.edu.au/pub/rsync
  103.  
  104. A european mirror of this directory is available at
  105. ftp://sunsite.auc.dk/pub/unix/rsync
  106.  
  107.