[Scottish] Sending display to another machine

ray rayH at engineering-intelligence.co.uk
Fri Oct 3 06:02:23 BST 2003


On Friday 26 September 2003 12:55, Allan Bruce wrote:
> Ok, this is what I will be missing as far as your setup goes.  my
> /etc/xinetd.d/ doesnt have vnc and this is one area I havent looked at yet
> - I am fairly new to admin under linux.  Do you think this would help? If
> so, can you give me a helpful hint as to how I can start this?

Some of this will be distribution dependent.  SuSE installs /etc/xinetd.d/vnc as part of its standard vnc.  All that is then required is to change the "disable" parameter from "yes" to "no", and (re)start xinetd.
I am appending stuff from a working  /etc/xinetd.d/vnc that you can use as a template.

Sorry for the delay in replying: too much work plus a cold.

-- 
 ray

-------------------------------------
# default: off
# description: This serves out a VNC connection which starts at a KDM login \
#       prompt. This VNC connection has a resolution of 1024x768, 16bit depth.
service vnc10
{
        type            = UNLISTED
        port            = 5910
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = nobody
        server          = /usr/X11R6/bin/Xvnc
        server_args     = :42 -inetd -once -query localhost -geometry 1024x768 -depth 16
        disable         = no
# either omit the following line or change it to allow your own network and permitted visitors.
        only_from       = 192.168.10.0
}
# default: off
# description: This serves out a VNC connection which starts at a KDM login \
#       prompt. This VNC connection has a resolution of 1280x1024, 16bit depth.
service vnc11
{
        type            = UNLISTED
        port            = 5911
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = nobody
        server          = /usr/X11R6/bin/Xvnc
        server_args     = :42 -inetd -once -query localhost -geometry 1024x768 -depth 16
        disable         = yes
}
# default: off
# description: This serves out the vncviewer Java applet for the VNC \
#       server running on port 5910, (vnc port 10).
service vnchttpd10
{
        type            = UNLISTED
        port            = 5810
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = nobody
        server          = /usr/X11R6/bin/vnc_inetd_httpd
        server_args     = 1024 768 5910
        disable         = yes
}

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




More information about the Scottish mailing list