Xvnc terminal server
- Read more about Xvnc terminal server
- Log in or register to post comments
Install vnc server and xinetd
yum -y install vnc-server xinetd
Configure xinetd:
chkconfig xinetd on
Create /etc/xinetd.d/xvncserver
service vnc-640x480x8 { protocol = tcp socket_type = stream wait = no user = nobody server = /usr/bin/Xvnc server_args = -inetd -query localhost -once -geometry 640x480 -depth 8 -SecurityTypes none } service vnc-800x600x8 { protocol = tcp socket_type = stream wait = no user = nobody server = /usr/bin/Xvnc