How to Install Wine 7.13 (Development Release) in Linux

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.

If you read this far, tweet to the author to show them you care. Tweet a thanks
Ravi Saive
I am an experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

48 thoughts on “How to Install Wine 7.13 (Development Release) in Linux”

  1. Please help, I am using Linux Ubuntu i have 32-bit and i am at the stage and it says this:

    configure: error: X development files not found. Wine will be built
    without X support, which probably isn't what you want. You will need
    to install development packages of Xlib at the very least.
    Use the --without-x option if you really want this.
    
    Reply
  2. 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

    Reply
    • @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..

      Reply
  3. I have Kali Linux 2.0 64-bit when i write ./configure –enable-win64 this will happen.

    configure: error: FreeType 64-bit development files not found. Fonts will not be built.
    Use the --without-freetype option if you really want this.
    
    Reply
    • @Matimy,

      Please install freetype development libraries before compiling wine on Kali Linux..

      # yum install freetype-devel
      Or
      $ sudo apt-get install freetype-devel
      
      Reply
  4. 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!

    Reply
    • @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..

      Reply
  5. 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

    Reply
    • @Rakesh,

      Just install Development Tools as shown:

      # yum groupinstall "Development tools"
      OR
      # yum install gcc
      

      and then try to run the compile command again, it will work without any errors.

      Reply
  6. 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

    Reply
    • @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?

      Reply

Got something to say? Join the discussion.

Have a question or suggestion? Please leave a comment to start the discussion. Please keep in mind that all comments are moderated and your email address will NOT be published.