首页 > 代码库 > redhat配置vnc
redhat配置vnc
Redhat 配置vnc server
# yum install xorg-x11-fonts-misc (或rpm安装)
# rpm -i vnc-server-4.1.2-14.el5_6.6.x86_64.rpm (需要从网上下)
# vncserver (需记下生成的序号 如“:1”)
两次密码
# vi .vnc/xstartup
按a进入编辑模式
#!/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 & (默认是不注掉的)
按Esc键退出编辑模式
:wq (保存并退出)
# vncserver -kill :1 (上面生成的序号,非固定":1")
# vncserver
调整防火墙策略:
# vi /etc/sysconfig/iptables
按a进入编辑模式
-A INPUT -p tcp -m multiport --dport 5801,5901,6001 -j ACCEPT
按Esc键退出编辑模式
:wq (保存并退出)
# service iptables restart
后面Windows vnc客户端略 (输入ip:序号即可)
本文出自 “linux” 博客,请务必保留此出处http://yangzhiming.blog.51cto.com/4849999/1882068
redhat配置vnc