RHEL5默认已经安装了vncserver的组建,直接配置就可以!
[root@rhel5 ~]# rpm -qa | grep vnc
vnc-server-4.1.2-9.el5
一、手动模式
1. 运行vncserver命令
[root@rhel5 ~]# vncserver
第一次运行会提示输入密码:
然后修改以下文件:/root/.vnc/xstartup
[root@rhel5 ~]# more /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 &
startkde &
gnome-session &
然后使用vnc客户端直接连接就行了 IP:端口号
二、服务模式
1. 运行ntsysv
勾选vncserver
注:服务的启动配置文件为: /etc/sysconfig/vncservers
在最后两行添加:
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600 "
2. 运行vncpasswd 设置密码
[root@rhel5 ~]# vncpasswd
3. 修改/root/.vnc/xstartup文件
4. 重启服务
[root@rhel5 ~]# service vncserver restart
Shutting down VNC server: 1:root [ OK ]
Starting VNC server: 1:root
New 'rhel5:1 (root)' desktop is rhel5:1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/rhel5:1.log
[ OK ]
阅读(902) | 评论(0) | 转发(0) |