解壓執行
此處若不作任何處理,下面會出現幾個錯誤:(有些錯誤沒有出現時可不管)
[這裡提示只需要安裝xlib或者xfree86即可,不要兩者都安裝。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的結果是只有這個版本
然後解壓[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"
或error: x development files not found. wine will be built
without x support, which probably isn't what you want. you will need
to install development packages of xlib/xfree86 at the very least.
use the --without-x option if you really want this.
yum-y install xorg*
yum -y install gnome* (這個可能不成功,不過會有提示的,按提示來做就沒錯了)
yum -y install gdm*
按照上面的三個都安裝好了,上面的問題才能解決了。
安裝完成之後繼續檢查configure[root@localhost wine-1.3.13]./configure此時configure檢查完成之後即可開始編譯安裝[root@localhost wine-1.3.13]
make
[root@localhost wine-1.3.13]
make
install編繹安裝的過程相當漫長,泡杯茶慢慢等吧!
--**
centos6 4安裝使用wine
分類 centos 2013 07 17 15 52 75人閱讀收藏 舉報 rpm ivh epel release 6 8.noarch.rpm rpm import etc pki rpm gpg rpm gpg key epel 6 yum makecache yum install wine...
CentOS 5 4編譯安裝Wine
www.winehq.org 解壓執行 root localhost tar jxvf wine 1.2.tar.bz2 進入wine目錄 root localhost cd wine 1.2 執行configure root localhost wine 1.2 configure 自動檢查相關依...
CentOS 5 4編譯安裝Wine手記
進入wine目錄 root localhost cd wine 1.2 執行configure root localhost wine 1.2 configure 自動檢查相關依賴關係 第乙個提示錯誤是 沒有c編譯器 安裝c編譯器gcc root localhost wine 1.2 yum ins...