| Dave Griffiths 2004-11-08, 7:47 am |
| Hi
I have just loaded VNC onto my RH9 box. The install instructions tell me
to add an entry to my inetd.conf. This is so I can launch vnc on demand.
RH9 is using xinetd I am trying to convert from inetd.
the following is on one line.
5950 stream tcp wait daveg /usr/bin/Xvnc Xvnc -inetd -query localhost
-once passwordFile=/home/daveg/.vnc/passwd
I created a file in the xinetd.d dir called 5951
the follwoing code is what I have tried as a conversion.
service 5951
{
socket_type = stream
port = 5951
protocol = tcp
user = daveg
wait = yes
server = /usr/bin/Xvnc
(next is all one line)
server_args = -query localhost -once
passwordFile=/home/daveg/.vnc/passwd
}
Please could someone help with this, I'm sure I cannot be far from having
a correct file.
Thanks in advance.
|