Added a switch to the Openssh instructions to set the default path for xauth

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@7194 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Ag Hatzimanikas 2008-02-25 15:29:52 +00:00
parent a63de0c096
commit 4ea982966e
3 changed files with 22 additions and 2 deletions

View File

@ -3,7 +3,7 @@ $LastChangedBy$
$Date$
-->
<!ENTITY day "24"> <!-- Always 2 digits -->
<!ENTITY day "25"> <!-- Always 2 digits -->
<!ENTITY month "02"> <!-- Always 2 digits -->
<!ENTITY year "2008">
<!ENTITY version "svn-&year;&month;&day;">

View File

@ -41,6 +41,16 @@
-->
<listitem>
<para>February 25th, 2008</para>
<itemizedlist>
<listitem>
<para>[ag] - Added a switch to the Openssh instructions to set the
default path for xauth.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>February 24th, 2008</para>
<itemizedlist>

View File

@ -109,7 +109,8 @@ useradd -c 'sshd PrivSep' -d /var/lib/sshd -g sshd \
<screen><userinput>sed -i 's@ -ldes@@' configure &amp;&amp;
./configure --prefix=/usr --sysconfdir=/etc/ssh --datadir=/usr/share/sshd \
--libexecdir=/usr/lib/openssh --with-md5-passwords \
--with-privsep-path=/var/lib/sshd &amp;&amp;
--with-privsep-path=/var/lib/sshd \
--with-xauth=/usr/bin/xauth &amp;&amp;
make</userinput></screen>
<para>If you linked <application>tcp_wrappers</application> into the
@ -183,6 +184,15 @@ install -v -m644 INSTALL LICENCE OVERVIEW README* WARNING.RNG \
<para><parameter>--with-pam</parameter>: This parameter enables
<application>Linux-PAM</application> support in the build.</para>
<para><parameter>--with-xauth=/usr/bin/xauth</parameter>: Set the
default location for the <command>xauth</command> binary for X
authentication. Change the location if <command>xauth</command> will
be installed to a different path. This can also be controlled from
<filename>sshd_config</filename> with the XAuthLocation keyword.
You can ommit this switch if <application>Xorg</application> is already
installed.
</para>
</sect2>
<sect2 role="configuration">