Changeset fdf798a6


Ignore:
Timestamp:
06/03/2005 06:46:08 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.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
Children:
b21c661
Parents:
3a929dc
Message:

Updated to rsync-2.6.5

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r3a929dc rfdf798a6  
    212212<!ENTITY ncftp-version                "3.1.7">
    213213<!ENTITY openssh-version              "4.0p1">
    214 <!ENTITY rsync-version                "2.6.3">
     214<!ENTITY rsync-version                "2.6.5">
    215215<!ENTITY cvs-version                  "1.11.20">
    216216<!ENTITY subversion-version           "1.1.4">
  • introduction/welcome/changelog.xml

    r3a929dc rfdf798a6  
    2727    <listitem>
    2828      <para>June 3rd, 2005 [randy]: Updated Samba configuration information as
    29       suggested by Alexander Patrakov (fixes bug #1386).</para>
     29      suggested by Alexander Patrakov (fixes bug #1386); Updated to
     30      rsync-2.6.5.</para>
    3031    </listitem>
    3132
  • server/other/rsync.xml

    r3a929dc rfdf798a6  
    77  <!ENTITY rsync-download-http "http://rsync.samba.org/ftp/rsync/rsync-&rsync-version;.tar.gz">
    88  <!ENTITY rsync-download-ftp "ftp://ftp.samba.org/pub/rsync/rsync-&rsync-version;.tar.gz">
    9   <!ENTITY rsync-md5sum "2beb30caafa69a01182e71c528fb0393">
    10   <!ENTITY rsync-size "583 KB">
    11   <!ENTITY rsync-buildsize "4.8 MB">
    12   <!ENTITY rsync-time "0.17 SBU">
     9  <!ENTITY rsync-md5sum "3691cdf1540d0649ba679edce6bae8fc">
     10  <!ENTITY rsync-size "643 KB">
     11  <!ENTITY rsync-buildsize "12 MB">
     12  <!ENTITY rsync-time "0.2 SBU">
    1313]>
    1414
     
    5959
    6060    <bridgehead renderas="sect4">Optional</bridgehead>
    61     <para><xref linkend="popt"/></para>
     61    <para><xref linkend="popt"/> and
     62    <xref linkend="docbook-utils"/></para>
    6263
    6364  </sect2>
     
    7071    run <command>rsync</command> as a daemon, create the
    7172    <systemitem class="username">rsyncd</systemitem> user and group
    72     with the following commands:</para>
    73 
    74 <screen role="root"><userinput>groupadd rsyncd &amp;&amp;
    75 useradd -c "rsyncd Daemon" -d /home/rsync -g rsyncd -s /bin/false rsyncd</userinput></screen>
     73    with the following commands issued by the
     74    <systemitem class="username">root</systemitem> user:</para>
     75
     76<screen role="root"><userinput>groupadd -g 48 rsyncd &amp;&amp;
     77useradd -c "rsyncd Daemon" -d /home/rsync -g rsyncd \
     78    -s /bin/false -u 48 rsyncd</userinput></screen>
    7679
    7780    <para>Install <application>rsync</application> by running the following
     
    7982
    8083<screen><userinput>./configure --prefix=/usr &amp;&amp;
    81 make &amp;&amp;
    82 make install</userinput></screen>
     84make</userinput></screen>
     85
     86    <para>If you have DocBook-Utils installed and wish to build HTML
     87    documentation, issue:</para>
     88
     89<screen><userinput>cd doc &amp;&amp;
     90docbook2html rsync.sgml &amp;&amp;
     91cd ..</userinput></screen>
     92
     93    <para>To test the results, issue: <command>make check</command>.</para>
     94
     95    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
     96
     97<screen role='root'><userinput>make install</userinput></screen>
     98
     99    <para>If you built the HTML documentation, install it using the following
     100    commands as the <systemitem class="username">root</systemitem> user:</para>
     101
     102<screen role='root'><userinput>install -v -m755 -d /usr/share/doc/rsync-&rsync-version; &amp;&amp;
     103install -v -m644 doc/*.html /usr/share/doc/rsync-&rsync-version;</userinput></screen>
    83104
    84105  </sect2>
     
    101122      <title>Configuration Information</title>
    102123
    103       <para>This is a simple download-only configuration. See the rsyncd
     124      <para>For client access to remote files, you may need to install the
     125      <xref linkend="openssh"/> package to connect to the remote server.</para>
     126
     127      <para>This is a simple download-only configuration to set up running
     128      <command>rsync</command> as a server. See the rsyncd.conf(5)
    104129      man-page for additional options (i.e., user authentication).</para>
    105130
     
    121146EOF</userinput></screen>
    122147
     148    <para>You can find additional configuration information and general
     149    documentation about <command>rsync</command> at
     150    <ulink url="http://rsync.samba.org/documentation.html"/>.</para>
     151 
    123152    </sect3>
    124153
    125     <sect3  id="rsync-init">
     154    <sect3 id="rsync-init">
    126155      <title>Boot Script</title>
    127156
    128157      <para>Note that you only want to start the
    129       <application>rsync</application> server if you want to provide a
     158      <application>rsync</application> server if you want to provide an
    130159      <application>rsync</application> archive on your local machine.
    131160      You don't need this script to run the
     
    153182        <seg>rsync</seg>
    154183        <seg>None</seg>
    155         <seg>Not determined at this time</seg>
     184        <seg>Optionally, /usr/share/doc/rsync-&rsync-version;</seg>
    156185      </seglistitem>
    157186    </segmentedlist>
     
    167196          <para>is a replacement for <command>rcp</command> (and
    168197          <command>scp</command>) that has many more features. It uses the
    169           "rsync algorithm" which provides a very fast method of syncing
    170           remote files. It does this by sending just the differences in the
    171           files across the link, without requiring that both sets of files
    172           are present at one end of the link beforehand.</para>
     198          <quote>rsync algorithm</quote> which provides a very fast method of
     199          syncing remote files. It does this by sending just the differences
     200          in the files across the link, without requiring that both sets of
     201          files are present at one end of the link beforehand.</para>
    173202          <indexterm zone="rsync rsync-prog">
    174203            <primary sortas="b-rsync">rsync</primary>
Note: See TracChangeset for help on using the changeset viewer.