User`s manual
44 Installing and Using the Axel-VNCviewer
vnc-800x600-8 5950/tcp
vnc-1024x768-8 5952/tcp
Then, check if
inetd
or
xinetd
is running. The next operation depends on the
daemon.
a) xinetd Daemon
If the directory
/etc/xinetd.d
exists, create the file
/etc/xinetd.d/vnc
and add the
following lines. If
/etc/xinetd.d
does not exist add these lines at the end of
/etc/xinetd.conf
:
service vnc-800x600-8
{
disable = no
protocol = tcp
socket_type = stream
wait = no
user = nobody
server = /usr/local/bin/Xvnc
server_args = -inetd -query localhost -once -geometry 800x600 -depth 8 -cc 3
}
service vnc-1024x768-8
{
disable = no
protocol = tcp
socket_type = stream
wait = no
user = nobody
server = /usr/local/bin/Xvnc
server_args = -inetd -query localhost -once -geometry 1024x768 -depth 8 -cc 3
}
These modifications will take effect after sending the signal USR2 to xinetd (
kill
-USR2 ...
).