歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> 配置VNC遠程連接Linux和Unix遠程服務器圖形界面安裝Oracle

配置VNC遠程連接Linux和Unix遠程服務器圖形界面安裝Oracle

日期:2017/2/28 16:02:41   编辑:Linux教程

1、配置並開啟vnc服務

[Oracle@localhost ~]$ vncserver

You will require a password to access your desktops.

Password: ---這裡要求輸入vnc客戶端登錄的密碼並重復
Verify:

New 'localhost.localdomain:2 (oracle)' desktop is localhost.localdomain:2

Creating default startup script. /home/oracle/.vnc/xstartup
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/localhost.localdomain:2.log
----如上告訴你vnc終端已經創建好,用的是第二個終端

2、在創建vnc服務的用戶目錄下會生成一個.vnc的隱藏目錄
[oracle@localhost ~]$ ls -a
. .bash_profile Disk1 .gconfd .gstreamer-0.10 .metacity README.htm .viminfo
.. .bashrc .eggcups .gnome .gtkrc-1.2-gnome2 .mozilla .RedHat .vnc
.bash_history .chewing .emacs .gnome2 .ICEauthority .nautilus .scim .Xauthority
.bash_logout Desktop .gconf .gnome2_private .kde p8202632_10205_Linux-x86-64.zip .Trash .zshrc

3、進入.vnc目錄,找到xstartup可執行文件,用vi 編輯器打開
[oracle@localhost ~]$ cd .vnc/
[oracle@localhost .vnc]$ ls
localhost.localdomain:2.log localhost.localdomain:2.pid passwd xstartup
[oracle@localhost .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 &
~
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
"xstartup" 12L, 333C 已寫入
[oracle@localhost .vnc]$ vncserver

New 'localhost.localdomain:3 (oracle)' desktop is localhost.localdomain:3

Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/localhost.localdomain:3.log


4、清除剛才創建的vnc虛擬終端
[oracle@localhost .vnc]$ vncserver -kill :1

Can't find file /home/oracle/.vnc/localhost.localdomain:1.pid
You'll have to kill the Xvnc process manually

[oracle@localhost .vnc]$ vncserver -kill :2
Killing Xvnc process ID 11889
[oracle@localhost .vnc]$ vncserver -kill :3
Killing Xvnc process ID 11945
[oracle@localhost .vnc]$ vncserver -kill :4

Can't find file /home/oracle/.vnc/localhost.localdomain:4.pid
You'll have to kill the Xvnc process manually

5、重新建立新的vnc虛擬終端
[oracle@localhost .vnc]$ vncserver

New 'localhost.localdomain:2 (oracle)' desktop is localhost.localdomain:2

Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/localhost.localdomain:2.log --該終端號為 :2

6、在windows客戶端用RealVNC軟件中的Run VNC Viewer客戶端連接。
7、在Run VNC Viewer 只需輸入linux服務器的地址和剛才生成的終端號:2
格式:192.168.1.56:2
8、輸入剛才配置vnc服務的時候配的即可登錄linux服務器圖形界面。

Copyright © Linux教程網 All Rights Reserved