source: server/other/rsync.xml@ 3cb0c57

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 3cb0c57 was 3cb0c57, checked in by Randy McMurchy <randy@…>, 18 years ago

Added the 'User Notes' wiki link to each package page; changed all instances of .[so,a] to .{so,a} (brackets changed to braces); changed all replaceable tags to use angle brackets instead of square brackets to encapsulate the text - commit #9

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5837 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY rsync-download-http "http://samba.org/ftp/rsync/old-versions/rsync-&rsync-version;.tar.gz">
8 <!ENTITY rsync-download-ftp "ftp://ftp.samba.org/pub/rsync/rsync-&rsync-version;.tar.gz">
9 <!ENTITY rsync-md5sum "30c4e2849cbeae93f55548453865c2f2">
10 <!ENTITY rsync-size "674 KB">
11 <!ENTITY rsync-buildsize "12 MB">
12 <!ENTITY rsync-time "0.2 SBU">
13]>
14
15<sect1 id="rsync" xreflabel="rsync-&rsync-version;">
16 <?dbhtml filename="rsync.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 <keywordset>
22 <keyword role="package">rsync-&rsync-version;.tar</keyword>
23 <keyword role="ftpdir">rsync</keyword>
24 </keywordset>
25 </sect1info>
26
27 <title>rsync-&rsync-version;</title>
28
29 <indexterm zone="rsync">
30 <primary sortas="a-rsync">rsync</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to rsync</title>
35
36 <para>The <application>rsync</application> package contains the
37 <command>rsync</command> utility. This is useful for synchronizing large
38 file archives over a network.</para>
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&rsync-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&rsync-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &rsync-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &rsync-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &rsync-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &rsync-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">rsync Dependencies</bridgehead>
63
64 <bridgehead renderas="sect4">Optional</bridgehead>
65 <para role="optional"><xref linkend="popt"/> and
66 <xref linkend="docbook-utils"/></para>
67
68 <para condition="html" role="usernotes">User Notes:
69 <ulink url="&blfs-wiki;/rsync"/></para>
70
71 </sect2>
72
73 <sect2 role="installation">
74 <title>Installation of rsync</title>
75
76 <para>For security reasons, running the <application>rsync</application>
77 server as an unprivileged user and group is encouraged. If you intend to
78 run <command>rsync</command> as a daemon, create the
79 <systemitem class="username">rsyncd</systemitem> user and group
80 with the following commands issued by the
81 <systemitem class="username">root</systemitem> user:</para>
82
83<screen role="root"><userinput>groupadd -g 48 rsyncd &amp;&amp;
84useradd -c "rsyncd Daemon" -d /home/rsync -g rsyncd \
85 -s /bin/false -u 48 rsyncd</userinput></screen>
86
87 <para>Install <application>rsync</application> by running the following
88 commands:</para>
89
90<screen><userinput>./configure --prefix=/usr &amp;&amp;
91make</userinput></screen>
92
93 <para>If you have DocBook-Utils installed and wish to build HTML
94 documentation, issue:</para>
95
96<screen><userinput>cd doc &amp;&amp;
97docbook2html rsync.sgml &amp;&amp;
98cd ..</userinput></screen>
99
100 <para>To test the results, issue: <command>make check</command>.</para>
101
102 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
103
104<screen role='root'><userinput>make install</userinput></screen>
105
106 <para>If you built the HTML documentation, install it using the following
107 commands as the <systemitem class="username">root</systemitem> user:</para>
108
109<screen role='root'><userinput>install -v -m755 -d /usr/share/doc/rsync-&rsync-version; &amp;&amp;
110install -v -m644 doc/*.html /usr/share/doc/rsync-&rsync-version;</userinput></screen>
111
112 </sect2>
113
114 <sect2 role="configuration">
115 <title>Configuring rsync</title>
116
117 <sect3 id="rsync-config">
118 <title>Config Files</title>
119
120 <para><filename>/etc/rsyncd.conf</filename></para>
121
122 <indexterm zone="rsync rsync-config">
123 <primary sortas="e-etc-rsyncd.conf">/etc/rsyncd.conf</primary>
124 </indexterm>
125
126 </sect3>
127
128 <sect3>
129 <title>Configuration Information</title>
130
131 <para>For client access to remote files, you may need to install the
132 <xref linkend="openssh"/> package to connect to the remote server.</para>
133
134 <para>This is a simple download-only configuration to set up running
135 <command>rsync</command> as a server. See the rsyncd.conf(5)
136 man-page for additional options (i.e., user authentication).</para>
137
138<screen role="root"><userinput>cat &gt; /etc/rsyncd.conf &lt;&lt; "EOF"
139<literal># This is a basic rsync configuration file
140# It exports a single module without user authentication.
141
142motd file = /home/rsync/welcome.msg
143use chroot = yes
144
145[localhost]
146 path = /home/rsync
147 comment = Default rsync module
148 read only = yes
149 list = yes
150 uid = rsyncd
151 gid = rsyncd
152</literal>
153EOF</userinput></screen>
154
155 <para>You can find additional configuration information and general
156 documentation about <command>rsync</command> at
157 <ulink url="http://rsync.samba.org/documentation.html"/>.</para>
158
159 </sect3>
160
161 <sect3 id="rsync-init">
162 <title>Boot Script</title>
163
164 <para>Note that you only want to start the
165 <application>rsync</application> server if you want to provide an
166 <application>rsync</application> archive on your local machine.
167 You don't need this script to run the
168 <application>rsync</application> client.</para>
169
170 <para>Install the <filename>/etc/rc.d/init.d/rsyncd</filename> init
171 script included in the
172 <xref linkend="bootscripts"/> package.</para>
173
174<screen role="root"><userinput>make install-rsyncd</userinput></screen>
175
176 </sect3>
177
178 </sect2>
179
180 <sect2 role="content">
181 <title>Contents</title>
182
183 <segmentedlist>
184 <segtitle>Installed Program</segtitle>
185 <segtitle>Installed Libraries</segtitle>
186 <segtitle>Installed Directories</segtitle>
187
188 <seglistitem>
189 <seg>rsync</seg>
190 <seg>None</seg>
191 <seg>Optionally, /usr/share/doc/rsync-&rsync-version;</seg>
192 </seglistitem>
193 </segmentedlist>
194
195 <variablelist>
196 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
197 <?dbfo list-presentation="list"?>
198 <?dbhtml list-presentation="table"?>
199
200 <varlistentry id="rsync-prog">
201 <term><command>rsync</command></term>
202 <listitem>
203 <para>is a replacement for <command>rcp</command> (and
204 <command>scp</command>) that has many more features. It uses the
205 <quote>rsync algorithm</quote> which provides a very fast method of
206 syncing remote files. It does this by sending just the differences
207 in the files across the link, without requiring that both sets of
208 files are present at one end of the link beforehand.</para>
209 <indexterm zone="rsync rsync-prog">
210 <primary sortas="b-rsync">rsync</primary>
211 </indexterm>
212 </listitem>
213 </varlistentry>
214
215 </variablelist>
216
217 </sect2>
218
219</sect1>
Note: See TracBrowser for help on using the repository browser.