wine是一個兼容層,可以從多平台(linux,macos,等)運行windows應用。
Wine (Wine Is Not an Emulator)[即Wine不是一個模擬器]是一個在Linux和UNIX之上的,Windows APIs的實現。注意,Wine不是Windows模擬器,而是運用API轉換技術實做出Linux對應到Windows相對應的函數來調用DLL以運行Windows程序。
1.安裝wine
第一步:wine是基於32位架構的,現在計算機基本上都是64位,因此需要啟用32位架構,如果計算機是32位的則忽略此步。
sudo dpkg --add-architecture i386
第二步:添加軟件源。
wget -nc https://dl.winehq.org/wine-builds/Release.key sudo apt-key add Release.key sudo apt-key adv --recv-keys --keyserver keyserver.Ubuntu.com F987672F sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'
第三步:更新軟件包。
sudo apt-get update
第四步:選擇一個wine發行包安裝。
版本 安裝命令 Stable branch sudo apt-get install --install-recommends winehq-stable Development branch sudo apt-get install --install-recommends winehq-devel Staging branch sudo apt-get install --install-recommends winehq-staging
檢查wine是否安裝好可以執行:
wine --version #如果出現wine的版本則說明安裝成功
本文轉載自: niffler