Wine 是一个在 Linux 下运行 Windows 应用程序的软件环境,其核心是一个 Windows 应用程序接口(API)库,作为 Linux 和 Windows 程序之间的桥梁。Wine 的官网是:http://www.winehq.org/。
安装方法:
首先,下载Wine源码包
下载Stable版本的Gz2包
解压运行
[root@localhost ~] tar jxvf wine-1.2.tar.bz2
进入wine目录
[root@localhost ~] cd wine-1.2
运行configure
[root@localhost wine-1.2] ./configure
自动检查相关依赖关系
第一个提示错误是
没有C编译器
安装C编译器GCC
[root@localhost wine-1.2] yum install gcc*
然后继续运行configure
[root@localhost wine-1.2] ./configure
提示第二个错误
没有flex版本
于是按照常理Yum安装
[root@localhost wine-1.2] yum install flex*
提示安装成功
继续configure
[root@localhost wine-1.2] ./configure
此处提示Flex版本过低
检查Flex版本
[root@localhost wine-1.2] flex –version
提示Flex版本是2.5.4
低于Wine要求的2.5.32
而yum update flex的结果是只有这个版本
只好去Flex官网下载最新版
http://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.2
继续Configure
[root@localhost wine-1.2] ./configure
提示缺少Bison组件
安装Bison组件
[root@localhost wine-1.2] yum install bison*
Bison安装完成之后继续检查Configure
[root@localhost wine-1.2] ./configure
此时提示缺少X Development组件
安装X Development组件
[root@localhost wine-1.2] yum -y groupinstall “X Software Development”
安装完成之后继续检查Configure
[root@localhost wine-1.2] ./configure
此时Configure检查完成之后即可开始编译安装
[root@localhost wine-1.2] make
[root@localhost wine-1.2] make install
经历漫长的编译过程即可使用Wine了
有关Wine的配置以及使用教程请参见其他文章,谢谢 。
—————————————
说明:
此时,只要使用 wine /程序路径/程序名称.exe 即可成功运行在windows才能运行的软件了。
如果运行是出现 Microsoft Visual C++ Runtime Library Runtime Error! 的错误提示,只需运行下面三条命令就可以解决:
wget http://www.kegel.com/wine/winetricks
chmod +x winetricks
./winetricks vcrun2005 (注意:最后这条命令,必须在Linux系统的图形界面使用终端执行才有效)
另一篇:
Wine 是一个在 Linux 下运行 Windows 应用程序的软件环境,其核心是一个 Windows 应用程序接口(API)库,作为 Linux 和 Windows 程序之间的桥梁。Wine 的官网是:http://www.winehq.org/。
Wine 安装包里的描述:
Description:
While Wine is usually thought of as a Windows(TM) emulator, the Wine
: developers would prefer that users thought of Wine as a Windows
: compatibility layer for UNIX. This package includes a program loader,
: which allows unmodified Windows 3.x/9x/NT binaries to run on x86 and x86_64
: Unixes. Wine does not require MS Windows, but it can use native system
: .dll files if they are available.
:
: The wine package is actually a meta-package which will install everything
: you need for wine to work smoothly. If you don’t want to install everything
: take a look at the wine-* packages.
Wine 在 CentOS5.5 里并不是预装的软件包,所以需要先配置 CentOS 的非官方软件源 RPMForge,参见(在 CentOS 5中安装 RPMforge 安装源),然后通过 RPMForge 来安装 Wine。
运行命令:
yum install wine -y
来安装 wine。Wine-1.2-1 安装包大概有 50M 容量。
安装包会自动安装依赖的软件包,安装一般不会有什么问题。完整完毕,接着就是配置了。
首先把 Windows/system32 下的 MFC42.dll、msxml.dll、msvcp60.dll、riched20.dll、riched32.dll 等 .dll 文件复制到 ~/.wine/drive_c/windows/system32 里,再输入命令 winecfg 运行 wine 配置命令。
其实一般不需要再做特别的配置,wine 就能工作了。
还有一点得注意,做完这些以后运行 Windows 程序时,SELinux 可能会弹出阻止窗口。我们用下面的方法禁用 SELinux:
用文本编辑器编辑 /etc/sysconfig/selinux 文件,把 SELINUX=enforcing 变为 SELINUX=disabled,关闭 SELinux,存盘退出,重启系统。
运行 Windows 程序的方法:
拷贝 Windows 程序(例如 Ueit32.exe)到 ContOS 下的某文件夹下,运行命令:
wine Ueit32.exe