Added instruction to create /tmp/.ICE-unix directory to Xorg server page.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@9871 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
DJ Lucas 2012-04-07 05:33:14 +00:00
parent ebedcd9eb7
commit 468d722525
2 changed files with 18 additions and 1 deletions

View File

@ -47,6 +47,10 @@
<listitem>
<para>[krejzi] - NetworkManager 0.9.4.0.</para>
</listitem>
<listitem>
<para>[dj] - Added instruction to create /tmp/.ICE-unix directory
to Xorg server page.</para>
</listitem>
</itemizedlist>
</listitem>

View File

@ -96,7 +96,10 @@ make</userinput></screen>
user:</para>
<screen role="root"><userinput>make install &amp;&amp;
ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11</userinput></screen>
ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11 &amp;&amp;
cat &gt;&gt; /etc/sysconfig/createfiles &lt;&lt; "EOF"
/tmp/.ICE-unix dir 1777 root root
EOF</userinput></screen>
</sect2>
@ -118,6 +121,16 @@ ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11</userinput></screen>
extension. This parameter is required if building without
<application>Mesa</application>.</para>
<para><command>ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11</command>:
This command ensures that the <application>Xorg</application> configuration
directory is located in <filename
class="directory">/etc/X11</filename>.</para>
<para><command>cat &gt;&gt; /etc/sysconfig/createfiles...</command>: This
command creates the <filename class='directory'>/tmp/.ICE-unix</filename>
directory at startup, and ensures that the permissions and ownership are
correct as is required by the server.</para>
</sect2>
<sect2 role="content">