Wine 3.3 Released with Vulkan Support (How to Install)

wine-logo245-1-7022699

Wine, a free software to run Windows applications on Linux, reached 3.3 development release two day ago.

Wine 3.3 release highlights:

  • Beginnings of Vulkan support.
  • Direct3D multi-threaded command stream enabled by default.
  • Multisample textures enabled by default.
  • Support for game controllers through SDL.
  • Support for loading CIL-only .Net binaries.
  • And a total of 35 bug-fixes.

How to Install Wine 3.3 in Ubuntu:

Wine offers official apt repositories with stable and development packages for Ubuntu 14.04, Ubuntu 16.04, Ubuntu 17.10, and their derivatives.

Open terminal via Ctrl+Alt+T and run following commands one by one to and the repository and install Wine:

1. Add the official wine repository via command:

sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/

wine-repo-600x82-6576843

For Linux Mint 18.x, use following command instead to add the repository:

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'

2. Install the GPG key to be able to receive software updates:

wget -nc https://dl.winehq.org/wine-builds/Release.key && sudo apt-key add Release.key

3. Finally update and install the latest Wine development release:

sudo apt-get update

sudo apt-get install --install-recommends winehq-devel

If you got dependencies issue, install aptitude (sudo apt-get install aptitude) and replace apt-get in last command with aptitude.

Read more about installing Wine in Ubuntu.

Uninstall:

To remove wine dev release, simply run command in terminal:

sudo apt-get remove --autoremove winehq-devel

And you can remove the repository via Software & Updates utility under Other Software tab.

Original Article