centos安装完后,一般就安装了VNC,配置一下就行了,
/etc/sysconfig/vncservers
在最后一行加一句
VNCSERVERS="1:root"
运行
vncpasswd
设置密码,至少6个符
vncserver
运行VNC服务!
好了,就完成了,,可以用VNC的CLIENT连上了,不过这时候的界面是很难看的,我们修改一下!
以ROOT为例子
cd /root/.vnc
[root@localhost .vnc]# cat 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 &
其它都不要,留下红色这两行就行了,
chkconfig --level 456 vncserver on
开机自动运行,这样就完成了,
阅读(1294) | 评论(0) | 转发(0) |