使用VNC 訪問遠程Linux圖形案頭

來源:互聯網
上載者:User

1、確認自己linux系統是否安裝VNC

[root@serv1 ~]# rpm -q vnc-server

vnc-server-4.1.2-14.el5_6.6

出現上面的資訊說明已經安裝了vnc服務。

2、啟動vnc服務

[root@serv1 ~]# vncserver :1
You will require a password to access your desktops.
Password:
Verify:
xauth:  creating new authority file /root/.Xauthority
New 'serv1.ganjh.com:1 (root)' desktop is serv1.ganjh.com:1

Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/serv1.ganjh.com:1.log

其中提示你輸入密碼,這個密碼就是用戶端vnc登陸linux的密碼。

3、查看linux是否開放了5801,5901連接埠

[root@serv1 ~]# iptables -I INPUT -p tcp --dport 5901 -j ACCEPT
[root@serv1 ~]# iptables -I INPUT -p tcp --dport 5801 -j ACCEPT

4、使用VNC Viewer軟體登陸測試,操作流程如下啟動VNC Viewer軟體 --> 

Server輸入“172.25.6.249:1” --> 點擊“OK” --> 

Password輸入登陸密碼 --> 點擊“OK”登陸到X-Window圖形案頭環境 --> 測試成功


5、上面的方式只是配置了字元介面,如果要看到gnome介面,那麼還要修改Linux設定檔

vi /root/.vnc/xstartup 

把裡面的內容刪除,替換成下面的

#!/bin/sh

# Uncomment the following two lines for normal desktop:

unset SESSION_MANAGER

exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup

[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources

xsetroot -solid grey

vncconfig -iconic &

xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &

twm &

6、重新啟動vnc server

[root@serv1 ~]# vncserver -kill :1
Killing Xvnc process ID 4046
[root@serv1 ~]# vncserver :1

New 'serv1.ganjh.com:1 (root)' desktop is serv1.ganjh.com:1

Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/serv1.ganjh.com:1.log

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.