Wine, a most popular and powerful open source application for Linux, that used to run Windows-based applications and games on the Linux Platform without any trouble.
WineHQ team recently announced a new development version of Wine 7.13 (release candidate for the upcoming releases). This new development build arrives with a number of new important features and 40+ bug fixes.
The wine team, keep releasing their development builds almost on weekly basis and adding numerous new features and fixes. Each new version brings support for new applications and games, making Wine a most popular and must-have tool for every user, who wants to run Windows-based software on a Linux platform.
According to the changelog, the following key features are added in this release:
- Gecko engine updated to version 2.47.3.
- USB driver converted to PE.
- Some theming improvements.
- Various bug fixes.
For more in-depth details about this build can be found on the official changelog page.
This article guides you on how to install the most recent development version of Wine 7.13 on RedHat-based and Debian-based distributions such as CentOS Stream, Fedora, Rocky Linux, AlmaLinux, Ubuntu, Linux Mint, and other supported distributions.
Installing Wine Development Release on Linux
Unfortunately, there is no official Wine repository available for the Red Hat-based systems, and the only way to install Wine is to compile it from the source.
To do this, you need to install some dependency packages such as gcc, flex, bison, libX11-devel, freetype-devel, Development Tools, etc. These packages are must require to compile Wine from sources.
Install Wine on RedHat-based Systems
Let’s install them using the following yum command on the respective distributions.
# yum -y groupinstall 'Development Tools' # yum -y install flex bison libX11-devel freetype-devel libxml2-devel libxslt-devel prelink libjpeg-devel libpng-devel
Next, switch to a normal user (here my username is ‘tecmint‘) and download the latest development version of Wine (i.e. 7.13) and extract the source tarball package using the following commands.
# su tecmint $ cd /tmp $ wget https://dl.winehq.org/wine/source/7.x/wine-7.13.tar.xz $ tar -xvf wine-7.13.tar.xz -C /tmp/
Now, it’s time to compile and build the Wine installer using the following commands as normal users on respective Linux architectures. If you don’t know your Linux distribution architecture, you can read this article to find out whether your Linux System is 32-bit or 64-bit.
Note: The installation process might take up to 15-20 minutes depending upon your internet and hardware speed, during installation it will ask you to enter the root password.
On 32-Bit Systems
$ cd wine-7.13/ $ ./configure $ make # make install [Run as root User]
On 64-Bit Systems
$ cd wine-7.13/ $ ./configure --enable-win64 $ make # make install [Run as root User]
Install Wine on Fedora
On Fedora, you can use the official Wine repository to install wine packages as shown:
----------- On Fedora 36 ----------- # dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/36/winehq.repo # dnf install winehq-devel ----------- On Fedora 35 ----------- # dnf config-manager --add-repo https://dl.winehq.org/wine-builds/fedora/35/winehq.repo # dnf install winehq-devel
Install Wine On Ubuntu and Linux Mint
Under Ubuntu and Linux Mint-based systems, you can easily install the latest development build of Wine using the official PPA.
Open a terminal and run the following commands with sudo privileges to download and add the new key.
$ sudo dpkg --add-architecture i386 [Enable 32-bit Arch] $ sudo wget -nc -O /usr/share/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
Add the Wine repository on Ubuntu and Linux Mint.
For this version: | Use this command: |
Ubuntu 22.04 | sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources |
Ubuntu 21.10 | sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/impish/winehq-impish.sources |
Ubuntu 20.04 Linux Mint 20.x |
sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources |
Ubuntu 18.04 Linux Mint 19.x |
sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/winehq-bionic.sources |
Update packages and then install the development branch as shown:
$ sudo apt update $ sudo apt install --install-recommends winehq-devel
Install Wine On Debian Systems
On Debian systems, you should follow the below instructions to install the latest WineHQ development builds.
First, enable 32-bit packages, then download and install the key which is used to sign packages.
$ sudo dpkg --add-architecture i386 $ sudo wget -nc -O /usr/share/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
Next, add the following repository to /etc/apt/sources.list file as per your Debian version.
For this version: | Use this command: |
Debian 11 (Bullseye) | sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bullseye/winehq-bullseye.sources |
Debian 10 (Buster) | sudo wget -nc -P /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/buster/winehq-buster.sources |
Now update the package repository database and install the Wine development branch as shown.
$ sudo apt-get update $ sudo apt install --install-recommends winehq-devel
For other Linux distributions, the installation instructions can be found at https://www.winehq.org/download.
How to Use Wine to Start Windows Applications
Once the installation completes successfully, you can install or run any windows based applications or games using wine as shown below.
On 32-Bit Systems
$ wine notepad $ wine notepad.exe $ wine c:\\windows\\notepad.exe
On 64-Bit Systems
$ wine64 notepad $ wine64 notepad.exe $ wine64 c:\\windows\\notepad.exe
Note: Please remember, that this is a development build and cannot be installed or used on production systems. It is advised to use this version only for testing purposes.
If you’re looking for the most recent stable version of Wine, you can go through our following articles, which describe how to install the most stable latest version on almost all Linux environments.
I got another type of error {cannot find L”C:\\windows\\system32\\-h.exe”} i am using 64bit kali linux
Please help, I am using Linux Ubuntu i have 32-bit and i am at the stage and it says this:
@Otesan,
First install following these dependency packages.
worked thx
Excellent guide, thank you very much!,
I have tried it in Centos 7 and it worked, but I am trying to use wine it for a second time in a new Centos 7×64 and it sends me the following error:
[[email protected] wine-1.9.19]$ ./configure -enable win64
configure: error: unrecognized option: `-enable’
Try `./configure –help’ for more information
[[email protected] wine-1.9.19]$ ./configure –enable-win64
checking build system type… x86_64-pc-linux-gnu
checking host system type… x86_64-pc-linux-gnu
checking whether make sets $(MAKE)… yes
checking for gcc… gcc
checking whether the C compiler works… no
configure: error: in `/tmp/wine-1.9.19′:
configure: error: C compiler cannot create executables
See `config.log’ for more details
content of config.log
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Wine configure 1.9.19, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure –enable-win64
## ——— ##
## Platform. ##
## ——— ##
hostname = federico.scarcasale.cl
uname -m = x86_64
uname -r = 3.10.0-514.2.2.el7.x86_64
uname -s = Linux
uname -v = #1 SMP Tue Dec 6 23:06:41 UTC 2016
/usr/bin/uname -p = x86_64
/bin/uname -X = unknown
/bin/arch = x86_64
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/local/bin
PATH: /bin
PATH: /usr/bin
PATH: /usr/local/sbin
PATH: /usr/sbin
PATH: /home/fede/.local/bin
PATH: /home/fede/bin
## ———– ##
## Core tests. ##
## ———– ##
configure:3679: checking build system type
…
configure: exit 77
@Federico,
It seems you compiling 64-bit binaries into 32-bit system, please check your Fedora system architecture before compiling, if you don’t know how to check system architecture, read this article Find Linux System Architecture.
Once you know your system architecture, you can use appropriate instructions to install wine..
I have Kali Linux 2.0 64-bit when i write ./configure –enable-win64 this will happen.
@Matimy,
Please install freetype development libraries before compiling wine on Kali Linux..
Error:
Ign https://dl.winehq.org DISTRO/main Translation-en
Downloaded 1,211 kB in 21s ( 55.4 kB / s)
W : Failed to fetch https://dl.winehq.org/wine-builds/debian/dists/DISTRO/main/binary-i386/Packages HttpError404
E: Failed to download some index files . They were ignored or older were used instead .
@Marcelo,
On Debian systems, you need to replace
DISTRO
with your Debian release eitherwheezy
,jessie
,stretch
orsid
in order to fetch packages for your Debian release.Ravi,
Good Morning,
On Debian systems, you need to replace DISTRO with your Debian release either wheezy, jessie, stretch or sid in order to fetch packages for your Debian release.
Please help-me.
I’m new to linux . How do I do that?
My sources.list
#
# Debian 7 “Wheezy”
deb http://httpredir.debian.org/debian/ wheezy main contrib non-free
deb http://ftp.de.debian.org/debian/ oldstable main
deb https://dl.winehq.org/wine-builds/debian/ DISTRO main
deb http://ftp.pl.debian.org/debian/ jessie-backports main contrib non-free
# deb cdrom:[Debian GNU/Linux 2.0 _Sana_ – Official Snapshot i386 LIVE/INSTALL Binary 20150811-09:06]/ sana contrib main non-free
#deb cdrom:[Debian GNU/Linux 2.0 _Sana_ – Official Snapshot i386 LIVE/INSTALL Binary 20150811-09:06]/ sana contrib main non-free
deb http://http.kali.org/kali sana main non-free contrib
deb-src http://http.kali.org/kali sana main non-free contrib
deb http://security.kali.org/kali-security/ sana/updates main contrib non-free
deb-src http://security.kali.org/kali-security/ sana/updates main contrib non-free
@Marcelo,
Just replace old line with the following line in the
/etc/apt/sources.list
file and try again install wine, if any errors do ask help here..Well these directions are crap! All it did was install it without any shortcuts or anyway to start and run it! I am so sick of half brained people only providing half directions! If your not going to produce full directions then don’t add any!
@Brian,
Directions are perfect and till now no any issues, if you are looking Windows kind of shortcuts after install, then I recommend you to stick with Windows..
I have 32 bit os red hat
after extract the wine-1.9.0.tar.bz2 On desktop
I type cmds:
cd wine-1.9.0/
And Then
./tools/wineinstall
thats it
then after I get the error.
Errors I have written in previous comment.
please help
@Rakesh,
Just install Development Tools as shown:
and then try to run the compile command again, it will work without any errors.
I follow all these steps but can’t install wine.
I have download wine-1.9.0.tar.bz2
on Linux red hat 6
I am following these cmds:
checking for gcc …..no
checking for CC ……no
checking for cl.exe… no
but configure :error: in ‘/home/user/desktop/wine-1.9.0’:
configure: error: no acceptable C compiler found in $PATH
i was dowload wine-1.9.7.tar.bz2 from their site and extract it..how to install it?
@Devan,
The instructions on how to install wine already explained neatly in this article, have you gone through the all the steps listed in this article?
How to install wine-gecko in redhat linux?
@Rafeeque,
The wine installation already included Gecko files, more info can be found here: https://wiki.winehq.org/Gecko
Doesn’t work for me, why is it so hard to get wine installed.
Using CentOS7, steps above done work..
@Damien,
If you don’t want to go through this complex compilation, you can simply enable epel repository and install wine in CentOS 7 as shown, but the available version may be little older..