努力, 努力, 再努力
全部博文(220)
分类: 系统运维
2015-10-27 18:34:03
环境: redhat 5.4
a. 确保当前系统已经安装了vnc-server-4.1.2-14.el5_3.1
b. 设置VNC窗口并输入登录VNC的密码,再次确认密码
[root@itnm ~]# vncserver :1
c. 编辑VNC配置文件/root/.vnc/xstartup
1 #!/bin/sh
2
3 # Uncomment the following two lines for normal desktop:
4 LANG="zh_CN.UTF-8"
5 unset SESSION_MANAGER
6 exec /etc/X11/xinit/xinitrc
7
8 [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
9 [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
10 xsetroot -solid grey
11 vncconfig -iconic &
12 xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
13 #twm &
14 gnome-session &
注意: 增加第4行,取消第5,6行的注释,增加第14行
d. 杀掉刚才建立的vncserver :1
[root@itnm ~]# vncserver -kill :1
e. 重新执行: [root@itnm ~]# vncserver :1
f. 暂时关闭防火墙iptables: /etc/init.d/iptables stop