Thanks for the quick reply, William . . .

Since I'm rather confident that this is probably a "UNIX is UNIX is UNIX"
problem, I didn't want to confuse anyone with the particular UNIX variant.
 But, I could be wrong, so . . .

I'm running Tru64 UNIX v5.1B, where the "init.d" sripts and "rc3.d" links
are in "/sbin".  The script contents are below.  The plan is to start five
displays as root upon boot.  Immediately following the script contents is
a look at the log for the :25 display . . .

Thanks again for any help!

--------------------------

#!/sbin/sh
#
# Startup/Stop script for VNCservers for root
#

HOME=/
export HOME
PATH=.:/bin:/sbin:/usr/sbin:/usr/bin:/usr/bin/X11:/usr/local:/usr/opt/vnc
export PATH

case "$1" in

'start')
   echo "VNCservers on displays :5 :10 :15 :20 :25 starting"
   vncserver :5
   vncserver :10
   vncserver :15
   vncserver :20
   vncserver :25
   ;;

'stop')
   echo "VNCservers on displays :5 :10 :15 :20 :25 stopping"
   vncserver -kill :5
   vncserver -kill :10
   vncserver -kill :15
   vncserver -kill :20
   vncserver -kill :25
   ;;

*)
   echo "Usage: /sbin/init.d/vnc { start | stop }"
   ;;

esac

------------------------

25/06/03 16:05:17 Xvnc version 3.3.2r3
25/06/03 16:05:17 Copyright (C) 1997-8 Olivetti & Oracle Research
Laboratory
25/06/03 16:05:17 See http://www.orl.co.uk/vnc for information about VNC
25/06/03 16:05:17 Desktop name 'X' (tesoro:25)
25/06/03 16:05:17 Protocol version supported 3.3
25/06/03 16:05:17 Listening for VNC connections on TCP port 5925
25/06/03 16:05:17 Listening for HTTP connections on TCP port 5825
25/06/03 16:05:17   URL http://tesoro:5825
25/06/03 16:05:20 Xvnc version 3.3.2r3
25/06/03 16:05:20 Copyright (C) 1997-8 Olivetti & Oracle Research
Laboratory
25/06/03 16:05:20 See http://www.orl.co.uk/vnc for information about VNC
25/06/03 16:05:20 Desktop name 'X' (tesoro:25)
25/06/03 16:05:20 Protocol version supported 3.3

25/06/03 16:05:29 Got connection from client 10.252.81.50
25/06/03 16:05:29 Protocol version 3.3
25/06/03 16:05:31 Pixel format for client 10.252.81.50:
25/06/03 16:05:31   8 bpp, depth 8
25/06/03 16:05:31   true colour: max r 7 g 7 b 3, shift r 0 g 3 b 6
25/06/03 16:05:31 no translation needed
25/06/03 16:05:31 rfbProcessClientNormalMessage: ignoring unknown encoding
type 16
25/06/03 16:05:31 Using hextile encoding for client 10.252.81.50
25/06/03 16:05:33 Pixel format for client 10.252.81.50:
25/06/03 16:05:33   8 bpp, depth 8
25/06/03 16:05:33   true colour: max r 7 g 7 b 3, shift r 0 g 3 b 6
25/06/03 16:05:33 no translation needed
25/06/03 16:05:33 Using hextile encoding for client 10.252.81.50
25/06/03 16:05:33 rfbProcessClientNormalMessage: ignoring unknown encoding
type 16
25/06/03 16:05:45 Client 10.252.81.50 gone
25/06/03 16:05:45 Statistics:
25/06/03 16:05:45   key events received 0, pointer events 230
25/06/03 16:05:45   framebuffer updates 225, rectangles 576, bytes 452436
25/06/03 16:05:45     hextile rectangles 576, bytes 452436
25/06/03 16:05:45   raw bytes equivalent 894342, compression ratio 1.976726

----------------------------


> Joey Knight said:
> [snip]
>>  Now, the "S99vnc" vncserver
>> server script is executed as designed, and the Xvnc process is there,
but
>> the contents of my xstartup script are not working for some reason, no
matter what the contents are (the standard "xterm",
>> /usr/dt/bin/Xsession,
>> etc.) . . .
>> I've looked at permissions, paths, and display variables, but
everything
>> looks okay from what I can tell.  Obviously, I'm overlooking something?
Any direction would be greatly appreciated!  I'd be glad to forward file
>> contents, etc. if that'd help . . .
>
> What are the contents of your /sbin/init.d/vnc (is that where you have
it,
> or is that a typo?) and the VNC log file?  What OS and version are you
using?
> --
> William Hooper
> _______________________________________________
> VNC-List mailing list
> [EMAIL PROTECTED]
> To remove yourself from the list visit:
> http://www.realvnc.com/mailman/listinfo/vnc-list
>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Joseph B. Knight
Specialist Solutions Architect
hp Enterprise UNIX
972-309-6571 (wk)
[EMAIL PROTECTED]
_______________________________________________
VNC-List mailing list
[EMAIL PROTECTED]
To remove yourself from the list visit:
http://www.realvnc.com/mailman/listinfo/vnc-list

Reply via email to