glfs/server/other/openssh/openssh-inst.xml
Larry Lawrence 0a820fc09d added galeon-1.2.6
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@240 af4574ff-66df-0310-9fd7-8a98e5e911e0
2002-09-19 00:26:49 +00:00

25 lines
846 B
XML

<sect2>
<title>Installation of OpenSSH</title>
<para>OpenSSH 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>mkdir /var/empty &amp;&amp;
chown root:sys /var/empty &amp;&amp;
groupadd sshd &amp;&amp;
useradd -g sshd sshd</userinput></screen></para>
<para>Install OpenSSH by running the following commands:</para>
<para><screen><userinput>./configure --prefix=/usr --sysconfdir=/etc/ssh \
&nbsp;&nbsp;&nbsp;--libexecdir=/usr/sbin --with-md5-passwords &amp;&amp;
make &amp;&amp;
make install </userinput></screen></para>
</sect2>