標籤:下載 tables get etc eal passwd put start vim
一,安裝Linux案頭:
- yum -y groupinstall Desktop
- yum -y groupinstall "X Window System"
- yum -y groupinstall chinese-support
- vi /etc/sysconfig/i18n
將en_US改成zh_CN
二。安裝VNCServer服務包:
1,安裝VNCServer服務端軟體包。
#yum -y install vnc *vnc-server*
2,改動VNCServer主設定檔
#vim /etc/sysconfig/vncservers
複製最後兩行並去掉行首凝視符,然後改動為
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1920x1080"
3。設定password
#vncpasswd
4,啟動vncserver服務
#/etc/init.d/vncserver start
5。開啟xstartup配置案頭
#vim /root/.vnc/xstartup
將最後一行改為
gnome &
6。設定防火牆
#vim /etc/sysconfig/iptables
在“-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT”以下加入一行-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT
重新啟動iptables服務
#/etc/init.d/iptables restart
7,使用VNC串連(:http://www.realvnc.com/download/)
password為上面設定的password。
完畢!
!
!
Win7 VNC遠端連線Centos案頭