centos6.9源码安装wine3.0稳定版

前端之家收集整理的这篇文章主要介绍了centos6.9源码安装wine3.0稳定版前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用源代码安装Wine 3.0

第1步:安装依赖包

我们需要用一些核心开发工具,如gcc,flex,bison,debuggers等来安装'Development Tools',这些软件必须要编译和构建新的包,使用YUM命令来安装。

# yum -y groupinstall 'Development Tools'
# yum -y install libX11-devel libxml2-devel libxslt-devel freetype-devel flex bison

第2步:下载Wine 3.0

wget  https://dl.winehq.org/wine/source/3.0/wine-3.0.tar.xz
tar -xvf wine-3.0.tar.xz

如果解压不了xz,安装xz

yum install -y xz

第3步:在Linux中安装Wine 3.0

----------在32位系统上----------

$ cd wine-3.0/
$ ./configure
$ make
# make install   #[以root用户身份运行]

----------在64位系统上----------

$ cd wine-3.0/
$ ./configure --enable-win64
$ make
# make install   #[以root用户身份运行]

第4步:安装完成,测试

--------- 在32位系统上 ---------

$ wine notepad
$ wine c:\\windows\\notepad.exe

--------- 在64位系统上 ---------

$ wine64 notepad
$ wine64 c:\\windows\\notepad.exe
原文链接:https://www.f2er.com/centos/374254.html

猜你在找的CentOS相关文章