VNC 4.1

From: Shaw, Kevin (Kevin.Shaw@CAX.USA.XEROX.COM)
Date: Thu May 19 2005 - 10:43:17 EDT


Does anyone have Real VNC 4.1 operational in Solaris 7 or 8?

I have two test systems:

Ultra 30 running Solaris 8
E250 running Solaris 7

I have Real VNC 3.3.7 running out of inetd. When I try to run
4.1 the VNC window just disappears after I enter a password.

The minimum command I can use to get VNC 4.1 to start is:

Xvnc -inetd -query localhost -once -SecurityTypes None

Still no luck, any ideas?

Here's my config:

/etc/services
vnc-1024x768x24 5900/tcp # Virtual Network Computing
vnc-800x600x8 5901/tcp # Virtual Network Computing
vnc-1024x768x8 5902/tcp # Virtual Network Computing
vnc-1152x900x8 5903/tcp # Virtual Network Computing
vnc-1280x1024x8 5904/tcp # Virtual Network Computing
vnc-800x600x16 5905/tcp # Virtual Network Computing
vnc-1024x768x16 5906/tcp # Virtual Network Computing
vnc-1152x900x16 5907/tcp # Virtual Network Computing
vnc-1280x1024x16 5908/tcp # Virtual Network Computing
vnc-800x600x24 5909/tcp # Virtual Network Computing
vnc-1280x1024x24 5912/tcp # Virtual Network Computing
vnc-1152x900x24 5911/tcp # Virtual Network Computing

/etc/inetd
vnc-800x600x8 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
800x600 8
vnc-1024x768x8 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1024x768 8
vnc-1152x900x8 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1152x900 8
vnc-1280x1024x8 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1280x1024 8
vnc-800x600x16 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
800x600 16
vnc-1024x768x16 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1024x768 16
vnc-1152x900x16 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1152x900 16
vnc-1280x1024x16 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1280x1024 16
vnc-800x600x24 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
800x600 24
vnc-1024x768x24 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1024x768 24
vnc-1152x900x24 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1152x900 24
vnc-1280x1024x24 stream tcp nowait nobody /opt/vnc/bin/vncinetd vncinetd
1280x1024 24

/opt/vnc/bin/vncinetd
#!/bin/sh
#
#ident "@(#)vncinetd 4.1 03/11/03 WKS"
#
# inetd.conf calls this script to start Xvnc

PROG=`basename $0`
VNC=/opt/vnc/bin
APP=${VNC}/Xvnc
vncJavaFiles=${VNC}/classes
PATH=/usr/bin:/usr/sbin:${VNC}

export PROG VNC APP LOG vncJavaFiles PATH

case "`test -g ${APP};echo $?`" in

   0) "${APP}" -inetd -query localhost -once \
      -cc 4 -geometry "${1}" -depth "${2}" -s 0 \
      -httpd ${vncJavaFiles} -httpport 5801 \
      -nevershared -fp tcp/localhost:7100 \
      -desktop "VNCServer on ${HOST}" \
      -SecurityTypes None
      ;;
   1) echo "The ${APP} NOT found!"

esac

TIA
-Kevin
_______________________________________________
sunmanagers mailing list
sunmanagers@sunmanagers.org
http://www.sunmanagers.org/mailman/listinfo/sunmanagers



This archive was generated by hypermail 2.1.7 : Wed Apr 09 2008 - 23:30:44 EDT