KDE FAILS TO START FROM INIT 3 boot.
From: Bill Campbell <bill@celestial.com>
>>_IceTransSocketUNIXConnect: Can't connect: errno =
111
>_IceTransSocketINETConnect: Can't connect: errno = 111
I assume that you're trying to start it from init state 3, not
the graphical kdm screen. There has been a problem in Caldera
that goes back as far as the COL 2.2 beta. The
/usr/lib/X11/xinit/xserverrc file needs one line added to allow
access from DISPLAY :0.0.
filename=xserverrc
#!/bin/bash
XAUTH=$HOME/.Xauthority
MKCOOKIE=/usr/bin/mcookie
touch $XAUTH
for host in localhost $HOSTNAME $HOST; do
xauth add $host/unix:0 . `$MKCOOKIE`
xauth add $host:0 . `$MKCOOKIE`
done
xauth add :0.0 . `$MKCOOKIE`
exec Xwrapper -auth $XAUTH :0
|
|
|