2016年6月15日 星期三

在 CentOS7/RHEL7 上使用 WINE 玩遊戲

設定目標:
  • 使用 WINE 玩 Windows 平台上的遊戲!
  • 事先準備事項:
    • 參考
快速設定流程:
  1. 更新 yum 相關套件:
    #yum clean all
    #yum update
    
  2. 安裝開發用工具:
    #yum groupinstall 'Development Tools'
    #yum install libX11-devel freetype-devel zlib-devel libxcb-devel
    
  3. 準備自行安裝 WINE 套件:
    #cd /usr/src
    #wget http://dl.winehq.org/wine/source/1.9/wine-1.9.9.tar.bz2
    #tar xjf wine-1.9.9.tar.bz2
    
  4. 安裝 WINE 套件:
    #cd wine-1.9.9
    #./configure  --enable-win64
    # make
    # make install
    
  5. 執行 WINE 套件:
    #wine64 --version
    #wine putty.exe
    
參考文獻:
  1. http://tecadmin.net/steps-install-wine-centos-rhel-fedora-systems/#
  2. https://appdb.winehq.org/objectManager.php?sClass=version&iId=19141