linux VNC使用方法

VNC是在基于UNIX和Linux操作系统的免费的开放源码软件,远程控制能力强大,高效实用,其性能可以和Windows和MAC中的任何远程控制软件媲美。 VNC也可运行在Windows系统上。

Redhat系统默认都安装了vncserver,在首次使用vnc,需先进行简单配置,以oracle用户为例

1.执行vncserver,启动服务,首次使用,必须设置一下密码,这个密码是通过vnc工具连接时所需的
[oracle@rhel47x64 ~]$ vncserver

You will require a password to access your desktops.

Password:
Verify:
xauth:  creating new authority file /home/oracle/.Xauthority

New 'rhel47x64:1 (oracle)' desktop is rhel47x64:1              ##密码设置后,会启动一个会话号,这里的会话号显示为1

Creating default startup script /home/oracle/.vnc/xstartup
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/rhel47x64:1.log


2,关闭刚创建的会话,修改配置文件,以让vncserver启动时,使用gnome桌面

关闭vncserver会话
[oracle@rhel47x64 ~]$ vncserver -kill :1                       ##1代表vncserver会话号
Killing Xvnc process ID 10407

编辑vnc配置文件
[oracle@rhel47x64 ~]$ vi /home/oracle/.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 &

将以下两行注释掉,新增一行
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
gnome-session

保存退出

3.使用winvnc客户端连接到linux服务器

在服务器上重新执行vncserver,记住生成的会话号

将以下工具解压到任意目录后,执行vncviewer
绿色软件,大小276K

输入IP:会话号,点击确定

[img][/img]

4.使用IE连接到linux服务器
打开IE,输入http://10.30.0.106:5801 会启动一个JAVA小程序  #这个端口号与会话号的关系,会话号1对应的端口为5801,会话号2对应的端口为5802,依此类推



点击OK,在Password处输入vncserver的密码即可


如果过一段时间再连接的话,由于oracle账户会启动屏保,此时还需要输入oracle账户本身的密码

你可能感兴趣的:(oracle,linux,windows,redhat,IE)