On 2/21/06, Marko Riedel <[EMAIL PROTECTED]> wrote:
[...]
> NSInternalInconsistencyException: unable to contact gdnc server -
> please check that the gdnc process is running.
> I attempted to start it at '/usr/GNUstep/System/Tools/gdnc'.
> However, gdnc is there:
> ls -l `which gdnc`
> -rwxr-xr-x    1 Feb 20 00:50 /usr/GNUstep/System/Tools/gdnc
[...]

Read the exception message again. It is complaining that gdnc isn't
_aready_ running.

You need to start gdnc during X11 startup, that is, from HOME/.xinitrc
or HOME/.xsession (or whatever your system is using).

I use the following in my HOME/.xinitrc

[...]
    # Start Distributed Notification Server
    #
    if [ -x `which gdnc` ];
    then
      opentool gdnc
    fi

    # Start PasteBoard Server
    #
    if [ -x `which gpbs` ];
    then
      opentool gpbs
    fi
[...]

You should probably also make sure that gdomap is started during
system boot time.

--
Chris


_______________________________________________
Discuss-gnustep mailing list
Discuss-gnustep@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnustep

Reply via email to