glfs/server/other/openssh/openssh-inst.xml
Larry Lawrence 5842069d2c update to openssh-3.6.1p2
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@927 af4574ff-66df-0310-9fd7-8a98e5e911e0
2003-07-02 02:08:12 +00:00

25 lines
938 B
XML

<sect2>
<title>Installation of <application>OpenSSH</application></title>
<para><application>OpenSSH</application> runs as two processes when connecting to other
computers. The first process is a priviledged process and controls the
issuance of privileges as necessary. The second process communicates
with the network. Additional installation steps are necessary to set up
the proper environment which are performed by the following
commands:</para>
<para><screen><userinput><command>mkdir /var/empty &amp;&amp;
chown root:sys /var/empty &amp;&amp;
groupadd sshd &amp;&amp;
useradd -g sshd sshd</command></userinput></screen></para>
<para>Install OpenSSH by running the following commands:</para>
<para><screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc/ssh \
&nbsp;&nbsp;&nbsp;--libexecdir=/usr/sbin --with-md5-passwords &amp;&amp;
make &amp;&amp;
make install </command></userinput></screen></para>
</sect2>