centos6.9源码安装wine3.0稳定版
2021-04-07 03:27
标签:centos wine3.0 源码安装 我们需要用一些核心开发工具,如gcc, flex, bison, debuggers等来安装‘Development Tools‘,这些软件必须要编译和构建新的包,使用YUM命令来安装。 如果解压不了xz,安装xz ----------在32位系统上---------- ----------在64位系统上---------- --------- 在32位系统上 --------- --------- 在64位系统上 --------- centos6.9源码安装wine3.0稳定版 标签:centos wine3.0 源码安装 原文地址:http://blog.51cto.com/9552815/2122646第1步:安装依赖包
# 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
yum install -y xz
第3步:在Linux中安装Wine 3.0
$ cd wine-3.0/
$ ./configure
$ make
# make install #[以root用户身份运行]
$ cd wine-3.0/
$ ./configure --enable-win64
$ make
# make install #[以root用户身份运行]
第4步:安装完成,测试
$ wine notepad
$ wine c:\\windows\\notepad.exe
$ wine64 notepad
$ wine64 c:\\windows\\notepad.exe
文章标题:centos6.9源码安装wine3.0稳定版
文章链接:http://soscw.com/index.php/essay/72239.html