Logo
  • Ubuntu
  • CentOS
  • Debian
  • Fedora
  • RedHat

How to Install Wine 7.13 (Development Release) in Linux - DesignLinux

designlinux 0 Comments

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.

  • How to Install Wine on RHEL-based Linux Distributions
  • How to Install Wine on Debian, Ubuntu, and Linux Mint

Related

Tags: wine

How to Upgrade Debian 10 Buster to Debian 11 Bullseye?

Prev Post

10 Most Dangerous Commands – You Should Never Execute on Linux

Next Post
Archives
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • July 2022
  • June 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
Categories
  • AlmaLinux
  • Android
  • Ansible
  • Apache
  • Arch Linux
  • AWS
  • Backups
  • Bash Shell
  • Bodhi Linux
  • CentOS
  • CentOS Stream
  • Chef
  • Cloud Software
  • CMS
  • Commandline Tools
  • Control Panels
  • CouchDB
  • Data Recovery Tools
  • Databases
  • Debian
  • Deepin Linux
  • Desktops
  • Development Tools
  • Docker
  • Download Managers
  • Drupal
  • Editors
  • Elementary OS
  • Encryption Tools
  • Fedora
  • Firewalls
  • FreeBSD
  • FTP
  • GIMP
  • Git
  • Hadoop
  • HAProxy
  • Java
  • Jenkins
  • Joomla
  • Kali Linux
  • KDE
  • Kubernetes
  • KVM
  • Laravel
  • Let's Encrypt
  • LFCA
  • Linux Certifications
  • Linux Commands
  • Linux Desktop
  • Linux Distros
  • Linux IDE
  • Linux Mint
  • Linux Talks
  • Lubuntu
  • LXC
  • Mail Server
  • Manjaro
  • MariaDB
  • MongoDB
  • Monitoring Tools
  • MySQL
  • Network
  • Networking Commands
  • NFS
  • Nginx
  • Nodejs
  • NTP
  • Open Source
  • OpenSUSE
  • Oracle Linux
  • Package Managers
  • Pentoo
  • PHP
  • Podman
  • Postfix Mail Server
  • PostgreSQL
  • Python
  • Questions
  • RedHat
  • Redis Server
  • Rocky Linux
  • Security
  • Shell Scripting
  • SQLite
  • SSH
  • Storage
  • Suse
  • Terminals
  • Text Editors
  • Top Tools
  • Torrent Clients
  • Tutorial
  • Ubuntu
  • Udemy Courses
  • Uncategorized
  • VirtualBox
  • Virtualization
  • VMware
  • VPN
  • VSCode Editor
  • Web Browsers
  • Web Design
  • Web Hosting
  • Web Servers
  • Webmin
  • Windows
  • Windows Subsystem
  • WordPress
  • Zabbix
  • Zentyal
  • Zorin OS
Visits
  • 2
  • 1,038
  • 609,486

DesignLinux.com © All rights reserved

Go to mobile version