【Linux】Linux 配置VNC server 顯示圖形化桌面

海星星hktk發表於2015-05-25

Linux下配置VNC server 顯示圖形化桌面


本文連線:
http://blog.itpub.net/29475508/viewspace-1671101/


[root@bigdatalite ~]# cd /root/.vnc/

[root@bigdatalite .vnc]# ls
bigdatalite:2.log  bigdatalite:2.pid  localhost:1.log  passwd  xstartup

[root@bigdatalite .vnc]# ls -l
total 20
-rw-r--r-- 1 root root 1189 May 25 11:49 bigdatalite:2.log
-rw-r--r-- 1 root root    6 May 25 11:47 bigdatalite:2.pid
-rw-r--r-- 1 root root  663 Jun 12  2013 localhost:1.log
-rw------- 1 root root    8 May 25 11:47 passwd
-rwxr-xr-x 1 root root  334 May 25 11:47 xstartup

備份原始檔案

[root@bigdatalite .vnc]# cp -p xstartup xstartup.bak

編輯檔案,最後一行改為gnome-session &

[root@bigdatalite .vnc]# vi 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 &
gnome-session &

殺死掉之前的vnc程式
[root@bigdatalite .vnc]# vncserver -kill :1
Can't find file /root/.vnc/bigdatalite:1.pid
You'll have to kill the Xvnc process manually
[root@bigdatalite .vnc]# vncserver -kill :2
Killing Xvnc process ID 13462
[root@bigdatalite .vnc]# vncserver -kill :3
Killing Xvnc process ID 13797

重啟vnc服務

[root@bigdatalite .vnc]# vncserver

New 'bigdatalite:2 (root)' desktop is bigdatalite:2


Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/bigdatalite:2.log


[root@bigdatalite .vnc]# 




客戶端使用vncviewer進行登入


登入後是圖形化操作介面



呂星昊
2015.5.25



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29475508/viewspace-1671101/,如需轉載,請註明出處,否則將追究法律責任。

相關文章