ericreit wrote:
> I am back at Xfce (version 4.4.2), and I am happy,
> but when running
> build 101, I received errors which I don't receive on
> build 94.
...
> Failed to contact configuration server; some possible
> causes are that
> you need to enable TCP/IP networking for ORBit, or
> you have stale NFS
> locks due to a system crash. See
> http://www.gnome.org/projects/gconf/
> for information. (Details - 1: Failed to get
> connection to session:
> Failed to connect to socket /tmp/dbus-41TRG4PUUj: No
> such file or
> directory)
> ....
This looks like an error message you get when the user session dbus is not
running. If you built
xfce using the opensolaris xfce project xfce spec files, then a change in the
file
/usr/dt/config/Xinitrc.xfce (or if you use it, the /etc/dt/config/Xinitrc.xfce)
file. This file apparently
causes dbus to die in recent releases of snv. Try changing the lines beginning
with the line
"command=/usr/bin/xfce4-session" to the end fo the file by the following:
######################################################
command=/usr/bin/xfce4-session
# start xfce4-session through ssh-agent if found
# dbus-launch will be started by xfce4-session
if [ -x "/usr/bin/ssh-agent" ] && [ -z "$SSH_AUTH_SOCK" ]; then
command="/usr/bin/ssh-agent -- $command"
else
echo "$0: ssh-agent not found or already running."
fi
echo 'Starting xfce4-session'
exec $command
###########################################################
--
This message posted from opensolaris.org