天天看點

centos6安裝圖形界面并遠端連接配接 - 森度

centos6安裝圖形界面并遠端連接配接

1. 安裝圖形化界面

# yum groupinstall -y "Desktop" "Desktop Platform" "Desktop Platform Development"  "Fonts"  "General Purpose Desktop"  "Graphical Administration Tools"  "Graphics Creation Tools"  "Input Methods"  "X Window System"  "Chinese Support [zh]" "Internet Browser"

# yum install xorg-x11* -y

2. 安裝與配置 VNC 伺服器

# yum install vnc *vnc-server* -y

####修改VNCServer主配置檔案 

# vim /etc/sysconfig/vncservers 

####複制最後兩行并去掉行首注釋符,然後修改為 

VNCSERVERS="1:root"

VNCSERVERARGS[1]="-geometry 1024x768"

####設定vnc連接配接密碼

# vncpasswd                                #輸入兩次相同的密碼

####啟動服務

# /etc/init.d/vncserver start

Starting VNC server: 1:root xauth: file /root/.Xauthority does not exist

New \'niaoyun47507:1 (root)\' desktop is niaoyun47507:1

Creating default startup script /root/.vnc/xstartup

Starting applications specified in /root/.vnc/xstartup

Log file is /root/.vnc/niaoyun47507:1.log

                                                           [ OK ]

# vim /root/.vnc/xstartup

####将最後一行改為

gnome & 

#### 防火牆添加相關規則 

# vim /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT  #添加

# service iptables restart

3.使用vnc用戶端連接配接伺服器

然後使用realvnc,http://www.realvnc.com/

輸入“IP:1”

再輸入密碼即可

vnc預設端口是5900+vnc端口數字