VNC stands for Virtual Network Computing. It is, in essence, a remote display system which allows you to view a computing 'desktop' environment not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures.
Many of us, for example, use a VNC viewer running on a PC on our desks to display our Unix environments which are running on a large server in the machine room downstairs.
URL: http://www.uk.research.att.com/vnc/
# tar zxvf vnc-3.3.3r2_x86_linux_2.0.tar.Z
# cd vnc_x86_linux_2.0/
# cp vncviewer vncserver vncpasswd vncconnect Xvnc /usr/local/bin
# mkdir -p /usr/local/bin/vnc/classes
# cp classes/* /usr/local/bin/vnc/classes
# vncserver :1
You will require a password to access your desktops.
Password:
Verify:
New 'X' desktop is hoge:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/hoge:1.log
# vncserver :1 -geometry 800x400 -depth 4
$geometry = "1024x768";
$depth = 8;
...
$vncClasses = "/usr/local/bin/vnc/classes";
#!/bin/sh
exec gnome-session
#!/bin/sh
exec startkde
xrdb $HOME/.Xresources
xsetroot -solid grey
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
# vncserver -kill :1
# vncviwer
http://[IP Address]:[5800+Display No]

Copyright © [- SroNey / JohN -]. All rights reserved