Changeset 45f3870 for server


Ignore:
Timestamp:
09/05/2005 12:45:27 AM (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.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:
cb91861
Parents:
57fcb07c
Message:

Updated to OpenSSH-4.2p1; added documentation installation commands

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/major/openssh.xml

    r57fcb07c r45f3870  
    77  <!ENTITY openssh-download-http "http://sunsite.ualberta.ca/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz">
    88  <!ENTITY openssh-download-ftp "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz">
    9   <!ENTITY openssh-md5sum "959c663e709c981f07a3315bfd64f3d0">
    10   <!ENTITY openssh-size "894 KB">
    11   <!ENTITY openssh-buildsize "15 MB">
    12   <!ENTITY openssh-time "0.4 SBU">
     9  <!ENTITY openssh-md5sum "df899194a340c933944b193477c628fa">
     10  <!ENTITY openssh-size "914 KB">
     11  <!ENTITY openssh-buildsize "15.7 MB">
     12  <!ENTITY openssh-time "0.5 SBU (additional 0.5 SBU to run the test suite)">
    1313]>
    1414
     
    8585    commands:</para>
    8686
    87 <screen role="root"><userinput>install -v -d -m700 /var/lib/sshd &amp;&amp;
    88 chown root:sys /var/lib/sshd &amp;&amp;
     87<screen role="root"><userinput>install -v -m700 -d /var/lib/sshd &amp;&amp;
     88chown -v root:sys /var/lib/sshd &amp;&amp;
    8989groupadd -g 50 sshd &amp;&amp;
    9090useradd -c 'sshd PrivSep' -d /var/lib/sshd -g sshd \
     
    109109    <para>If you use <application>Heimdal</application> as your Kerberos5
    110110    implementation and you linked the <application>Heimdal</application>
    111     libraries into the build using the <option>--with-kerberos5</option>
    112     parameter, you'll need to modify the <filename>Makefile</filename> or
    113     the build will fail. Use the following command:</para>
     111    libraries into the <application>OpenSSH</application> build using the
     112    <option>--with-kerberos5</option> parameter, you'll need to modify the
     113    <filename>Makefile</filename> if you previously linked
     114    <application>OpenSSL</application> into the
     115    <application>Heimdal</application> build or the build will fail. The
     116    <application>OpenSSH</application> default expects
     117    <application>Heimdal</application> was built using the included
     118    <filename class='libraryfile'>libdes</filename> library instead of
     119    <application>OpenSSL</application>. Use the following command to modify
     120    the <filename>Makefile</filename>:</para>
    114121
    115122<screen><userinput>sed -i -e "s/lkrb5 -ldes/lkrb5/" Makefile</userinput></screen>
     
    123130    you add 127.0.0.1 to the sshd line in <filename>/etc/hosts.allow</filename>
    124131    if you have a restrictive <filename>/etc/hosts.deny</filename> file, or the
    125     testsuite will fail. To run the testsuite, issue: <command>make -k
    126     tests</command>.</para>
     132    test suite will fail. To run the test suite, issue: <command>make -k
     133    tests</command>. The banner tests are known to fail.</para>
    127134
    128135    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    129136
    130 <screen role="root"><userinput>make install</userinput></screen>
     137<screen role="root"><userinput>make install &amp;&amp;
     138install -v -m755 -d /usr/share/doc/openssh-&openssh-version; &amp;&amp;
     139install -v -m644 INSTALL LICENCE OVERVIEW README* WARNING.RNG \
     140    /usr/share/doc/openssh-&openssh-version;</userinput></screen>
    131141
    132142  </sect2>
     
    221231        ssh-keygen, ssh-keyscan, and ssh-keysign</seg>
    222232        <seg>None</seg>
    223         <seg>/etc/ssh and /var/lib/sshd</seg>
     233        <seg>/etc/ssh, /var/lib/sshd and
     234        /usr/share/doc/openssh-&openssh-version;</seg>
    224235      </seglistitem>
    225236    </segmentedlist>
Note: See TracChangeset for help on using the changeset viewer.