install vnc server on centos 6 minimal GUI desktop : <br /> <br />1/ yum update -y <br />2/ yum groupinstall Desktop -y <br />3/ yum install tigervnc-server -y <br />4/ yum install xorg-x11-fonts-Type1 -y <br />5/ yum install nano -y <br />6/ chkconfig vncserver on <br />7/ vncpasswd <br />8/ nano /etc/sysconfig/vncservers <br />###Add this at the bottom of the file### <br /> VNCSERVERS="1:root" <br /> VNCSERVERARGS[1]="-geometry 800x600" <br /> <br />9/ service vncserver restart <br />10/ vncserver -kill :1 <br />11/ nano .vnc/xstartup <br />###Add this at the bottom of the file### <br /> #twm & <br /> exec gnome-session & <br /> <br />12/ service vncserver start