我把我在centos下面安装VNC的步骤简单写一下,看能不能帮到你!
yum install tigervnc-server -y
yum install pixman pixman-devel libXfont -y
chkconfig vncserver on
vi /etc/sysconfig/vncservers
(在文本编辑器里加一行VNCSERVERS="2:root",数字代表端口号,root代表管理员权限,你可以根据需要修改)
vncpassword (设置登陆密码)
service vncserver restarts
这样就完成了,远程登陆输入IP:端口号(上面设置的端口号),比如192.168.1.20:2
这样就可以访问了
1、需要配置安装VNC,然后通过VNC连接
2、安装和配置VNC
① 安装vnc
# yum install -y tigervnc-server tigervnc-server-module libXfont pixman xterm xorg-x11-twm 安装vnc及字体库
# chkconfig vncserver on 设置开机自动启动
②VNC配置
修改 /etc/sysconfig/vncservers 文件,添加以下内容
# The VNCSERVERS variable is a list of display:user pairs.
#
# Uncomment the lines below to start a VNC server on display :2
# as my 'myusername' (adjust this to your own). You will also
# need to set a VNC passwordrun 'man vncpasswd' to see how
# to do that.
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted! For a secure way of using VNC, see this URL:
# http://kbase.redhat.com/faq/docs/DOC-7028
# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
# Use "-localhost" to prevent remote VNC clients connecting except when
# doing so through a secure tunnel. See the "-via" option in the
# `man vncviewer' manual page.
# VNCSERVERS="2:myusername"
# VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 1024x768 -nolisten tcp -depth 24"
# -alwaysshared代表允许多用户同时登录 -depth代为色深,参数有8,16,24,32
#红色为新增内容
③ 设置VNC密码
# vncpasswd
Password:
Verify:
连续两次输入同样的密码
设置的密码保存在 /root/.vnc/passwd
④ 修改防火墙配置,修改/etc/sysconfig/iptables
# vi /etc/sysconfig/iptables #编辑,添加以下代码,开启5901、5902端口
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT
:wq! 保存,退出
service iptables restart # 重启
⑤使用VNC连接CentOS主机
直接打开VNC,输入IP地址,冒号后面的1代表桌面号,这个要根据你的配置文件定义的桌面号
3、通过vnc登陆后,切换到oracle用户下面,即可进入到oracle的图形配置数据库界面
有源代码 cygwin 或者 mingw 编译吧。因为 Linux 的程序文件架构格式叫做 ELF ,不是 Windows 的 PE 格式,他们的描述,程序、函数入口什么的都不兼容,除非有桥接的接口转换软件,那么他们不兼容的。
Linux 下面有 wine 这个应用接口模拟桥接的软件,但 Windows 下面没见过。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)