我是靠谱客的博主 超级电灯胆,最近开发中收集的这篇文章主要介绍centos安装wine,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

因为要跑exe文件,下载wine安装包,在官网上可以找到,相应系统还有不同的快速安装方法:
www.winehq.org/download/
然后拉到页面最下面:Wine Source Downloads
我是在sourceforge.net下的。目前最新的版本是wine-1.3.13,直接点击使用命令:

wget  sourceforge.net/projects/wine/files/Source/wine-1.3.13.tar.bz2/download?source=files

就下载了。
解压运行
此处若不作任何处理,下面会出现几个错误:

tar.bz  解压 tar jxvf
[root@localhost ~]tar jxvf wine-1.3.13.tar.bz2

进入wine目录
[root@localhost ~]cd wine-1.3.13
运行configure
[root@localhost wine-1.3.13]./configure
自动进行检查

第一个提示错误是
没有C编译器
安装C编译器GCC(之前已安装,此处无错误)
[root@localhost wine-1.3.13]yum install gcc*

然后继续运行configure
[root@localhost wine-1.3.13]./configure
提示第二个错误
没有flex版本
于是按照常理Yum安装
[root@localhost wine-1.3.13]yum install flex*
提示安装成功

继续configure
[root@localhost wine-1.3.13]./configure
此处提示Flex版本过低
检查Flex版本
[root@localhost wine-1.3.13]flex –version
提示Flex版本是2.5.4
低于Wine要求的2.5.32
而yum update flex的结果是只有这个版本

只好去Flex官网下载最新版

flex.sourceforge.net/

下载flex version 2.5.35 in tar.gz
然后解压
[root@localhost ~]tar jxvf flex-2.5.35.tar.gz
进入flex-2.5.35目录
[root@localhost ~]cd flex-2.5.35
然后检查configure
[root@localhost flex-2.5.35]./configure
然后编译安装
[root@localhost flex-2.3.35]make
[root@localhost flex-2.3.35]make install

解决Flex问题之后
进入Wine目录
[root@localhost flex-2.3.35]cd
[root@localhost ~]cd wine-1.3.13
继续Configure
[root@localhost wine-1.3.13]./configure
提示缺少Bison组件
安装Bison组件
[root@localhost wine-1.3.13]yum install bison*

Bison安装完成之后继续检查Configure
[root@localhost wine-1.3.13]./configure
此时提示缺少X Development组件
安装X Development组件
[root@localhost wine-1.3.13]yum -y groupinstall “X Software Development”

安装完成之后继续检查Configure
[root@localhost wine-1.3.13]./configure
此时Configure检查完成之后即可开始编译安装
[root@localhost wine-1.3.13]make
[root@localhost wine-1.3.13]make install

缺少的组件均在software/softwares/RPM6..2

Time:2014.08.24

Ahthor:半音

最后

以上就是超级电灯胆为你收集整理的centos安装wine的全部内容,希望文章能够帮你解决centos安装wine所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部