1. 程式人生 > >centos6.9源碼安裝wine3.0穩定版

centos6.9源碼安裝wine3.0穩定版

centos 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

centos6.9源碼安裝wine3.0穩定版