From 468d722525752b853386b40ebc35a74bd8e79d9f Mon Sep 17 00:00:00 2001 From: DJ Lucas Date: Sat, 7 Apr 2012 05:33:14 +0000 Subject: [PATCH] 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 --- introduction/welcome/changelog.xml | 4 ++++ x/installing/x7server.xml | 15 ++++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/introduction/welcome/changelog.xml b/introduction/welcome/changelog.xml index e5560d073a..6d0082969a 100644 --- a/introduction/welcome/changelog.xml +++ b/introduction/welcome/changelog.xml @@ -47,6 +47,10 @@ [krejzi] - NetworkManager 0.9.4.0. + + [dj] - Added instruction to create /tmp/.ICE-unix directory + to Xorg server page. + diff --git a/x/installing/x7server.xml b/x/installing/x7server.xml index 25af4ceb94..b88e08e8eb 100644 --- a/x/installing/x7server.xml +++ b/x/installing/x7server.xml @@ -96,7 +96,10 @@ make user: make install && -ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11 +ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11 && +cat >> /etc/sysconfig/createfiles << "EOF" +/tmp/.ICE-unix dir 1777 root root +EOF @@ -118,6 +121,16 @@ ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11 extension. This parameter is required if building without Mesa. + ln -s $XORG_PREFIX/share/X11/xorg.conf.d /etc/X11: + This command ensures that the Xorg configuration + directory is located in /etc/X11. + + cat >> /etc/sysconfig/createfiles...: This + command creates the /tmp/.ICE-unix + directory at startup, and ensures that the permissions and ownership are + correct as is required by the server. +