CentOS 6.5 安装和配置 VNC!!!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6.5 安装和配置 VNC!!!相关的知识,希望对你有一定的参考价值。

实验环境

Server:CentOS 6.5 x86_64

Client: Windows 7

安装和配置VNC

  1. 1.     [[email protected] ~]# yum install tigervnc-server  -y

  2. 2.     修改vnc主配置文件

[[email protected]~]# vim /etc/sysconfig/vncservers

找到最后两行,去掉注释,修改为

VNCSERVERS="1:root"  ###第一个远程连接的账户为root

VNCSERVERARGS[1]="-geometry1200x900 "

###root远程登录分辨率为1200x900

  1. 3.     启动vnc

[[email protected]~]# vncserver

Youwill require a password to access your desktops.

Password:    ###这里输入连接远程桌面的密码

Verify:       ###再次输入密码 

xauth:(stdin):1:  bad display name"gxh:1" in "add" command

New‘gxh:1 (root)‘ desktop is gxh:1

Creatingdefault startup script /root/.vnc/xstartup

Startingapplications specified in /root/.vnc/xstartup

Logfile is /root/.vnc/gxh:1.log

  1. 4.     修改xstartup文件

[[email protected]~]# vim .vnc/xstartup

将最后两行注释掉,在最后一行添加如下:

#xterm-geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &

#twm&

gnome-session&

  1. 5.     设置vncserver开机启动

[[email protected]~]# chkconfig vncserver on

  1. 6.     设置防火墙

VNCserver 监听的端口从 5900 开始,display:1 监听 5901,display:2监听 5902,以此类推。

[[email protected]~]# iptables -I INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT

[[email protected]~]# service iptables save

  1. 7.     VNC Server配置完成

客户端

  1. 8.     安装vnc客户端

  1.9.     远程连接vnc服务器

技术分享

扩展命令

  1. 10.  添加一个display

[[email protected] ~]# vncserver

xauth: (stdin):1:  bad display name "gxh:2" in"add" command

New ‘gxh:2 (root)‘ desktop is gxh:2

Starting applications specified in/root/.vnc/xstartup

Log file is /root/.vnc/gxh:2.log

  1. 11.  列出所有display

[[email protected] ~]# vncserver -list

TigerVNC server sessions:

X DISPLAY #  PROCESSID

:1        2403

:2        2998

  1. 12.  关闭一个display

[[email protected] ~]# vncserver -kill :2

Killing Xvnc process ID 2998

[[email protected] ~]# vncserver -list

TigerVNC server sessions:

X DISPLAY #  PROCESSID

:1        2403

  1. 13.  修改远程登录密码

[[email protected] ~]# vncpasswd

Password:

Verify:

VNC客户端软件推荐

  • VNC Viewer

  • TightVNC

  • RealVNC

  • TigerVNC

 


本文出自 “菜鸟行天下” 博客,请务必保留此出处http://guoxh.blog.51cto.com/10976315/1892103

以上是关于CentOS 6.5 安装和配置 VNC!!!的主要内容,如果未能解决你的问题,请参考以下文章

CentOS 6.5 安装VNC

centos 6.5安装vnc(图形化远程服务器)

centos 6.5安装vncserver 并开启远程桌面

centos 6.5安装vncserver

怎样在CentOS 7.0上安装和配置VNC服务器

怎样在 CentOS 7.0 上安装和配置 VNC 伺服器