README 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. WHAT IS RSYNC?
  2. --------------
  3. Rsync is a fast and extraordinarily versatile file copying tool for
  4. both remote and local files.
  5. Rsync uses a delta-transfer algorithm which provides a very fast method
  6. for bringing remote files into sync. It does this by sending just the
  7. differences in the files across the link, without requiring that both
  8. sets of files are present at one of the ends of the link beforehand. At
  9. first glance this may seem impossible because the calculation of diffs
  10. between two files normally requires local access to both files.
  11. A technical report describing the rsync algorithm is included with this
  12. package.
  13. USAGE
  14. -----
  15. Basically you use rsync just like scp, but rsync has many additional
  16. options. To get a complete list of supported options type:
  17. rsync --help
  18. See the manpage for more detailed information.
  19. SETUP
  20. -----
  21. Rsync normally uses ssh or rsh for communication with remote systems.
  22. It does not need to be setuid and requires no special privileges for
  23. installation. You must, however, have a working ssh or rsh system.
  24. Using ssh is recommended for its security features.
  25. Alternatively, rsync can run in `daemon' mode, listening on a socket.
  26. This is generally used for public file distribution, although
  27. authentication and access control are available.
  28. To install rsync, first run the "configure" script. This will create a
  29. Makefile and config.h appropriate for your system. Then type "make".
  30. Note that on some systems you will have to force configure not to use
  31. gcc because gcc may not support some features (such as 64 bit file
  32. offsets) that your system may support. Set the environment variable CC
  33. to the name of your native compiler before running configure in this
  34. case.
  35. Once built put a copy of rsync in your search path on the local and
  36. remote systems (or use "make install"). That's it!
  37. RSYNC DAEMONS
  38. -------------
  39. Rsync can also talk to "rsync daemons" which can provide anonymous or
  40. authenticated rsync. See the rsyncd.conf(5) man page for details on how
  41. to setup an rsync daemon. See the rsync(1) man page for info on how to
  42. connect to an rsync daemon.
  43. WEB SITE
  44. --------
  45. The main rsync web site is here:
  46. http://rsync.samba.org/
  47. You'll find a FAQ list, downloads, resources, HTML versions of the
  48. manpages, etc.
  49. MAILING LISTS
  50. -------------
  51. There is a mailing list for the discussion of rsync and its applications
  52. that is open to anyone to join. New releases are announced on this
  53. list, and there is also an announcement-only mailing list for those that
  54. want official announcements. See the mailing-list page for full
  55. details:
  56. http://rsync.samba.org/lists.html
  57. BUG REPORTS
  58. -----------
  59. To visit this web page for full the details on bug reporting:
  60. http://rsync.samba.org/bugzilla.html
  61. That page contains links to the current bug list, and information on how
  62. to report a bug well. You might also like to try searching the Internet
  63. for the error message you've received, or looking in the mailing list
  64. archives at:
  65. http://mail-archive.com/rsync@lists.samba.org/
  66. To send a bug report, follow the instructions on the bug-tracking
  67. page of the web site.
  68. Alternately, email your bug report to rsync@lists.samba.org .
  69. GIT REPOSITORY
  70. --------------
  71. If you want to get the very latest version of rsync direct from the
  72. source code repository then you can use git:
  73. git clone git://git.samba.org/rsync.git
  74. See the download page for full details on all the ways to grab the
  75. source, including nightly tar files, web-browsing of the git repository,
  76. etc.:
  77. http://rsync.samba.org/download.html
  78. COPYRIGHT
  79. ---------
  80. Rsync was originally written by Andrew Tridgell and is currently
  81. maintained by Wayne Davison. It has been improved by many developers
  82. from around the world.
  83. Rsync may be used, modified and redistributed only under the terms of
  84. the GNU General Public License, found in the file COPYING in this
  85. distribution, or at:
  86. http://www.fsf.org/licenses/gpl.html
  87. AVAILABILITY
  88. ------------
  89. The main web site for rsync is http://rsync.samba.org/
  90. The main ftp site is ftp://rsync.samba.org/pub/rsync/
  91. This is also available as rsync://rsync.samba.org/rsyncftp/