> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED]] On Behalf Of Jeff Towarnicki
> Here are the log files, for :1, :2, and finaly :3 (the
> port which my gnome desktop loads up on... (the other
> 2 have just a grey background..
> 
> [jtowarn@cr787749-a .vnc]$ cat cr787749-a\:1.log
> 09/01/03 10:20:07 Xvnc version 3.3.3r1
> 09/01/03 10:20:07 Copyright (C) AT&T Laboratories
> Cambridge.
> 09/01/03 10:20:07 All Rights Reserved.
> 09/01/03 10:20:07 See
> http://www.uk.research.att.com/vnc for information on
> VNC
> 09/01/03 10:20:07 Desktop name 'X' (cr787749-a:1)
> 09/01/03 10:20:07 Protocol version supported 3.3
> 09/01/03 10:20:07 Listening for VNC connections on TCP
> port 5901
> 09/01/03 10:20:07 Listening for HTTP connections on
> TCP port 5801
> 09/01/03 10:20:07   URL http://cr787749-a:5801
> 
[snip, same as above]
>
> [jtowarn@cr787749-a .vnc]$ cat cr787749-a\:3.log
> 09/01/03 10:23:42 Xvnc version 3.3.3r1
> 09/01/03 10:23:42 Copyright (C) AT&T Laboratories
> Cambridge.
> 09/01/03 10:23:42 All Rights Reserved.
> 09/01/03 10:23:42 See
> http://www.uk.research.att.com/vnc for information on
> VNC
> 09/01/03 10:23:42 Desktop name 'X' (cr787749-a:3)
> 09/01/03 10:23:42 Protocol version supported 3.3
> 09/01/03 10:23:42 Listening for VNC connections on TCP
> port 5903
> 09/01/03 10:23:42 Listening for HTTP connections on
> TCP port 5803
> 09/01/03 10:23:42   URL http://cr787749-a:5803
> xrdb: No such file or directory
> xrdb: can't open file '/home/jtowarn/.Xresources'
> SESSION_MANAGER=local/cr787749-a:/tmp/.ICE-unix/16050
> 
> Gtk-WARNING **: gtk_signal_disconnect_by_data(): could
> not find handler containing data (0x8153B68)
> 
> (oddly enough the 3rd file is the only with a warning,
> yet that is where the service works!!!), waht is
> causing this to be different from the log files on :1
> and :2????

Yes, odd.  Maybe the problem is with xrdb?  Try commenting out that line in
your xstartup.
 
> each time I am using the same script, the below
> script:
> 
> [jtowarn@cr787749-a .vnc]$ cat vncstart
> vncserver -depth 24 -geometry 1152x864
>

Does the console show any messages?  Does the same problem happen when you
just type in the vncserver line instead of running it from a script?  Are
there any different messages?
 
> and my xstartup file looks like so:
> 
> [jtowarn@cr787749-a .vnc]$ cat xstartup
> #!/bin/sh
> 
> xrdb $HOME/.Xresources
> xsetroot -solid grey
> xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP
> Desktop" &
> startgnome &
>  
> hope that is enough information let me know if I left
> anything out,
> 
> thanks a million,
> 
> Jeff Towarnicki.
> 

You might also try putting a line or two in your xstartup script to see how
far it goes.  Something like:

 #!/bin/sh
 echo before_xrdb
 xrdb $HOME/.Xresources
 echo before_xsetroot
 xsetroot -solid grey
 echo before_xterm
 xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
 echo before_gnome
 startgnome &
 echo after_gnome

The "echo" lines will appear in the VNC log and let you know how far the
script got.

-- 
William Hooper
_______________________________________________
VNC-List mailing list
[EMAIL PROTECTED]
http://www.realvnc.com/mailman/listinfo/vnc-list

Reply via email to