author:skate
time:2010-05-24
以前也用过linux的远程图形界面管理程序x-win32,地址如下:
http://blog.csdn.net/wyzxg/archive/2007/09/10/1779148.aspx
今天介绍在介绍一个图形管理软件vnc,简单配置如下
vnc服务端os版本:centos4.7
vnc client: nvc viewer客户端
1.检查vnc服务器是否安装
[root@ticket-A ~]# rpm -qa | grep vnc
vnc-server-4.0-12.el4
centos4.7默认已经安装了vnc服务端
如果发现没有安装的话,可以用如下的命令安装
[root@ticket-A ~]# yum -y install vnc vnc-server
2.将用于vnc的用户名添加到配置文件中,这里的用户名是linux系统的用户名
[root@ticket-A ~]# vi /etc/sysconfig/vncservers
# The VNCSERVERS variable is a list of display:user pairs.
#
# Uncomment the line below to start a VNC server on display :1
# as my 'myusername' (adjust this to your own). You will also
# need to set a VNC password; run 'man vncpasswd' to see how
# to do that.
#
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted! For a secure way of using VNC, see
# .
# VNCSERVERS="1:myusername"
# VNCSERVERARGS[1]="-geometry 800x600"
#skate add
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600"
~
~
~
"/etc/sysconfig/vncservers" 18L, 567C written
注:有的系统配置里有 –nolisten tcp 和 –nohttpd ,这两个是阻止Xwindows登陆
和HTTP方式VNC登陆的,如果需要图形界面,那就删除这部分。
3. 设置用户vnc登录的密码
例如,我这里用root登录,那就在root的环境下执行如下命令,如果是其他用户名
就su - 到其他用户环境下
[root@ticket-A ~]# vncpasswd
Password:
Verify:
4. 启动vnc服务
[root@ticket-A ~]# service vncserver status
Xvnc 已停
[root@ticket-A ~]# service vncserver start
启动 VNC 服务器:1:root [ 确定 ]
5. 配置vnc启动时的环境
[root@ticket-A ~]# vi .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 $