当前位置: 首页 > 图文教程 > 服务器 > Linux服务器 > 在CentOS下安装配置VNC的过程

Linux服务器
在虚拟机RedhatLinux下安装Samba服务器
Linux系统下服务器硬件检查和文件传输
LinuxFtp服务器搭建支持Anonymous读写
Linux操作系统下Vsftp配置使用详细解析
Linux服务器的常用备份方法
SUSELinuxsubversion服务器自启动
RHEL下DHCP服务的配置与应用
linux自带的MAIL客户端用法
用NFS服务开发ARMLinux程序的方法
新手学堂:在Linux系统下mail命令的测试
UbuntuLinux系统下ApacheSSL配置方法
为Solaris服务器配置开源安全工具(下)
在Linux系统环境下配置WU-FTP服务器
Redhatlinux自动FTP传送备份
UbuntuLinux6.06LTS下安装Samba服务
在Centos5安装配置VNC的方法详细介绍
FedoraLinux8配置SAMBA服务的过程
Linux下成功安装和配置Sock5代理过程
实用技巧:Linux系统服务器快速登录
UbuntuServer系统用户安全优化方法

Linux服务器 中的 在CentOS下安装配置VNC的过程


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-18   浏览: 42 ::
收藏到网摘: n/a

1.检查vnc客户端和服务器是否已经安装:
 
[gavin@centos~]$rpm-qvncvnc-server
 
packagevncisnotinstalled
 
vnc-server-4.0-8.1
 
centos5已包含vnc的安装包
 
2.将用户名称加入到配置文件:
 
(注:这里的“用户名”是指linux系统用户的名称)
 
[gavin@centos~]#vi/etc/sysconfig/vncservers
 
#
 
#UncommentthelinebelowtostartaVNCserverondisplay:1
 
#asmy'myusername'(adjustthistoyourown)。Youwillalso
 
#needtosetaVNCpassword;run'manvncpasswd'toseehow
 
#todothat.
 
#
 
#DONOTRUNTHISSERVICEifyourlocalareanetworkis
 
#untrusted!ForasecurewayofusingVNC,see
 
#http://www.uk.research.att.com/vnc/sshvnc.html>.
 
#VNCSERVERS="1:myusername"
 
#VNCSERVERS="1:gavin2:john"#usethemethodformoreuser
 
VNCSERVERS="1:gavin2:root3:root"
 
#VNCSERVERARGS[1]="-geometry800x600"
 
VNCSERVERARGS[1]="-geometry1024x768"
 
3.设置用户gavin的密码
 
[gavin@centos~]$vncpasswd
 
Password:
 
Verify:
 
4.启动VNC服务
 
[gavin@centos~]#/sbin/servicevncserverstart
 
StartingVNCserver:1:gavin[OK]
 
5.输入命令
 
[gavin@centos~]$cd~/.vnc/
 
[[email protected]]$vixstartup
 
#!/bin/sh
 
#Uncommentthefollowingtwolinesfornormaldesktop:
 
#unsetSESSION_MANAGER
 
#exec/etc/X11/xinit/xinitrc
 
[-x/etc/vnc/xstartup]&&exec/etc/vnc/xstartup
 
[-r$HOME/.Xresources]&&xrdb$HOME/.Xresources
 
xsetroot-solidgrey
 
vncconfig-iconic&
 
#xterm-geometry80x24+10+10-ls-title"$VNCDESKTOPDesktop"&
 
gnome-session&#setstartingGNOMEdesktop
 
#startkde&#kdedesktop
 
#twm&#Textinterface
 
6.重启vncserver
 
[gavin@centos~]#/sbin/servicevncserverrestart
 
ShuttingdownVNCserver:1:gavin[OK]
 
StartingVNCserver:1:gavin[OK]
 
7.Windows登陆到VNCServer
 
(1)。从IE登录
 
直接从IE浏览器中输入如下地址:
 
http://xxx.xxx.xxx.xxx:5802
 
输入密码即可使用。
 
(2)。从VNCview登录
 
在windows上安装vncview,然后输入xxx.xxx.xxx.xxx:2,连接登录,输入密码即可。
 
备注:如果从vncview登录时,提示connectionrefused(10061),则是因为linux防火墙的问题,登录centos系统,选择System——>Preferences——>RemoteDesktop,勾选sharing中的两项,Security两项不勾,点击关闭,然后再重新用vncview登录即可。