标签:
参考文章:http://blog.csdn.net/mchdba/article/details/43058849
主要是远程安装oracle11g需要用到这个东西:
进入系统依次执行下列命令:
#查看系统是否安装vnc
shell>rpm -qa|grep vnc
shell>ps -ef|grep vnc
#安装vnc
shell>yum install tigervnc tigervnc-server -y
#安装完成之后再运行rpm -qa|grep vnc查看安装的包,如下
#tigervnc-1.1.0-16.el6.centos.x86_64
#tigervnc-server-1.1.0-16.el6.centos.x86_64
#libvncserver-0.9.7-4.el6.x86_64
#如果安装没有完全,比如如果少第3个,可以再运行yum install libvncserver-0.9.7-4.el6.x86_64单独安装(我这里两次安装的情况不一样!!!)
shell>rpm -qa|grep vnc
shell>yum install libvncserver-0.9.7-4.el6.x86_64 -y
#编辑配置文件,在问后面新增
#VNCSERVERS="1:root"
#VNCSERVERARGS[1]="-geometry 800x600"
#这个800x600估计就是vnc远程之后的屏幕大小咯
shell>vi /etc/sysconfig/vncservers
#设置vnc密码:
shell>vncpasswd
#重启vnc服务,并设置为开机启动
shell>service vncserver restart
shell>chkconfig vncserver on
ps:o了可以在windows上通过vnc工具连接了,有可能会报10060错误,把防火墙关了就ko了。
标签:
原文地址:http://www.cnblogs.com/ccooler/p/4369136.html