码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 6安装和配置VNC

时间:2014-10-28 15:50:36      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:centos 6安装和配置vnc

 

CentOS 6安装和配置VNC

 

环境centos6.3

VNC是Linux上的一款非常优秀的远程控制工具软件,通常我们在Windows上面安装vnc客户端软件来远程访问Linux机器(Windows上常用的客户端RealVNC),要远程连接到Linux首先要确保Linux上面已经安装了VNC server,下面以CentOS 6为例来说明:

 

如果上面的几个rpm包已经存在,说明VNC server已经安装好了,接下来跳转步骤3启动vncserver就可以了,否则执行步骤2

 

1. 检查是否已经安装了VNC server

[root@centos6 ~]# rpm -qa | grep vnc 
tigervnc-1.0.90-0.17.20110314svn4359.el6.i686 
gtk-vnc-0.3.10-3.el6.i686 
tigervnc-server-1.0.90-0.17.20110314svn4359.el6.i686
 gtk-vnc-python-0.3.10-3.el6.i686

 

 2. 安装VNC server

# yum install tigervnc

# yum install tigervnc-server

 

3. 启动vncserver

第一次启动vncserver需要输入密码两次

启动过程中报错1、:[dix] Could not init font path element /usr/share/X11/fonts/misc, removing from list!

解决办法:安装这三个包 yum install libXfont xorg-x11-xinit xorg-x11-fonts-Type1

然后重新启动:

2、今天是2013.04.11最新centos版本是6.4,如果是centos6.4以下的版本执行命令:

yum install -y tigervnc*  后,执行启动会发现提示如下错误:


WARNING: The first attempt to start Xvnc failed, possibly because the font
catalog is not properly configured.  Attempting to determine an appropriate
font path for this system and restart Xvnc using that font path ...
Could not start Xvnc.

/usr/bin/Xvnc: symbol lookup error: /usr/bin/Xvnc: undefined symbol:
pixman_composite_trapezoids
/usr/bin/Xvnc: symbol lookup error: /usr/bin/Xvnc: undefined symbol:
pixman_composite_trapezoids

这是因为版本原因导致字体问题,需要安装、更新X11的包,或者看提示pixman安装此包。

命令如下:yum install pixman pixman-devel libXfont -y

[root@centos6 mnt]# vncserver
You will require a password to access your desktops.
Password:
Verify:
New ‘centos6.xman.org:1 (root)‘ desktop is centos6.xman.org:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/centos6.xman.org:1.log

可以看到已经生成了一个desktop:centos6.xman.org:1

 

为了方便,可见将vncserver添加到开机启动的服务中,使用setup->System services, 选择vncserver保存即可

接下来在VNC客户端输入上面的desktop就可以连接上Linux的desktop,如果发现连接不上,有可能是下面两个原因导致的:

(1) 本地windows的hosts文件中没有配置远程Linux的hostname,解决方案也很简单,只需要将desktop的hostname替换为IP地址或者在本地windows的hosts文件中添加相应的hostname与IP的映射关系即可

(2) 是由于Linux的防火墙阻止了,这时我们可以选择关闭防火墙或者将VNC的服务端口加入到Linux防火墙的信任列表

 

本文出自 “david0512” 博客,请务必保留此出处http://gjr0512.blog.51cto.com/6518687/1568696

CentOS 6安装和配置VNC

标签:centos 6安装和配置vnc

原文地址:http://gjr0512.blog.51cto.com/6518687/1568696

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!