Win7 VNC 客户端连接RedHat Linux AS 5.8的配置

来源:互联网 发布:作品集用什么软件知乎 编辑:程序博客网 时间:2024/05/17 22:18

转载请注明出处:http://blog.csdn.net/guoyjoe/article/details/20647553

1、配置安装VNC

[root@guodb2 Disk1]# yum install vnc*      

[root@uubee8 yum.repos.d]# yum install tigervnc tigervnc-server -y          #在CentOS下安装VNC包



2、设VNC密码
[root@guodb2 Disk1]# vncserver


You will require a password to access your desktops.


Password:
Verify:


New 'guodb2:1 (root)' desktop is guodb2:1


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


3、重新启动VNC服务
[root@guodb2 Disk1]# service vncserver stop
Shutting down VNC server:                                  [  OK  ]
[root@guodb2 Disk1]# service vncserver start
Starting VNC server: no displays configured                [  OK  ]

4、登录报错如下



5、查VNC端口
[root@guodb2 Disk1]# netstat -tupln |grep vnc
tcp        0      0 0.0.0.0:6001                0.0.0.0:*                   LISTEN      9748/Xvnc           
tcp        0      0 0.0.0.0:5801                0.0.0.0:*                   LISTEN      9748/Xvnc           

tcp        0      0 0.0.0.0:5901                0.0.0.0:*                   LISTEN      9748/Xvnc    

    

6、从上面可以看出0号端号被占用了,用1号端号登录



7、正常登录VNC,但图形界面显示如下 



8、修改VNC配置文件,注释原来的两行,添加最后两行
[root@guodb2 Disk1]# vi /etc/sysconfig/vncservers
# VNCSERVERS="2:myusername"
# VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"

 VNCSERVERS="1:root"
 VNCSERVERARGS[1]="-geometry 1400x750 -nolisten tcp "


9、修改图形界面,全部注释掉,添加最后一行
[root@guodb1 yum.repos.d]# 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 &
gnome-session &


10、重启VNC服务
[root@guodb2 Disk1]# service vncserver stop
Shutting down VNC server: 1:root                           [  OK  ]
[root@guodb2 Disk1]# service vncserver start
Starting VNC server: 1:root xauth:  creating new authority file /root/.Xauthority


New 'guodb2:1 (root)' desktop is guodb2:1


Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/guodb2:1.log


                                                           [  OK  ]


11、正常登录,并正常显示图形界面





0 0
原创粉丝点击