在 Ubuntu Debian Fedora 上安装 Wine 2.0
Wine 2.0 修改和改善了大量的 Direct3D 10/11 的功能,包括更多的着色指令、 sRGB 读写支持、矩阵纹理等等,此外还调整了 DirectX 支持。在音频方面,有 GStreamer 1.0 支持、DirectSound 下混为立体声等。
Wine不是像虚拟机或者模拟器一样模仿内部的Windows逻辑,而是將Windows API调用翻译成为动态的POSIX调用,免除了性能和其他一些行为的内存占用。
Ubuntu 16.04 16.10 15.04 15.10 14.04 14.10
If your system is 64 bit, enable 32 bit architecture (if you haven't already):
sudo dpkg --add-architecture i386
Add the repository:
sudo add-apt-repository ppa:wine/wine-builds
Update packages:
sudo apt-get update
Then install one of the following packages:
Development branch
sudo apt-get install --install-recommends winehq-devel
Staging branch
sudo apt-get install --install-recommends winehq-staging
wine --version
wine-2.0
Debian 8.0 Jessie
Debian 7.0 Wheezy
https://wiki.winehq.org/Debian
First, enable 32 bit packages:
sudo dpkg --add-architecture i386
Then install key which was used to sign packages:
wget https://dl.winehq.org/wine-builds/Release.key
sudo apt-get install apt-transport-https
sudo apt-key add Release.key
vi /etc/apt/sources.list
deb https://dl.winehq.org/wine-builds/debian/ jessie main
或者
deb https://dl.winehq.org/wine-builds/debian/ wheezy main
或者
deb http://ftp.de.debian.org/debian/ oldstable main
Update packages:
sudo apt-get update
Then install one of the following packages:
Development branch
sudo apt-get install --install-recommends winehq-devel
Staging branch
sudo apt-get install --install-recommends winehq-staging
https://wiki.winehq.org/Fedora