vnc使用随笔

因为最近研究下kickstart自动安装的东西,需要用vnc连接虚拟机,原来用过结果忘了,这次在安装后折腾半天也不能连接,现把配置给记录下。

环境:centos5.5 32位 在linux第5启动模式启动

1.安装vnc服务器端

yum -y install vnc-server

2.设置xnc

设置服务器端的配置文件

路径:

/etc/sysconfig/vncservers

在最后添加,或修改成如下字串

#vnc第二个桌面以root用户运行
 VNCSERVERS="2:root"

#vnc桌面设置
 VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"

保存

3.设置root下的vnc运行设置

#!/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" &
gnome-session  &

4.运行vncserver客户端

#vncserver 回车

系统会让你输二次密码。然后输出如下:

New 'Centos1:3 (root)' desktop is Centos1:3

Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/Centos1:3.log
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/Centos1:3.log

然后再windows安装vncviews软件。直接连接服务器IP:加3(此处对应上面的New 'Centos1:3 (root)' desktop is Centos1:3 部分,其余部分是设置文件和日志)

你可能感兴趣的:(职场,vnc,休闲)