yum -y groupinstall ‘Development Tools’
yum install gcc libX11-devel freetype-devel zlib-devel libxcb-devel libxslt-devel
wine notepad
wine c:windowsnotepad.exe
cd /tmp
wget http://dl.winehq.org/wine/source/9.0/wine-9.0.tar.xz
Recently, the Wine team proudly announced the stable release of version 9.0, which is now available for download as the source and binary packages for various distributions including Linux, Windows, and Mac.
Step 1: Installing Dependency Packages
Contents
———- On Fedora 39 ———-
dnf config-manager –add-repo https://dl.winehq.org/wine-builds/fedora/39/winehq.repo
dnf install winehq-stable
———- On Fedora 38 ———-
dnf config-manager –add-repo https://dl.winehq.org/wine-builds/fedora/38/winehq.repo
dnf install winehq-stable
Configuring and Running Wine
tar -xvf wine-9.0.tar.xz -C /tmp/
Step 4: Installing Wine from Sources
This release reflects a year of hard work and over 7,000 changes, which includes many improvements, with the main highlights being the new WoW64 architecture and the experimental Wayland driver.
Wine is an open-source and free application for Linux that allows users to run Windows-based software and games on Unix/Linux-like operating systems.
In this article, we will show how to install the Wine 9.0 version in RHEL-based distributions such as CentOS Stream, Rocky Linux, and AlmaLinux using source code (difficult and only suitable for experts) and on Fedora Linux using the official wine repository.
dnf -y groupinstall ‘Development Tools’
dnf -y install gcc libX11-devel freetype-devel zlib-devel libxcb-devel libxslt-
Step 2: Downloading the Wine Source Code
winecfg
———- On 64-bit Systems ———-
cd wine-9.0/
./configure –enable-win64
make
sudo make install
———- On 32-bit Systems ———-
cd wine-9.0/
./configure
make
sudo make install
Install Wine on Fedora Linux Using Wine Repository
dnf groupinstall workstation
OR
yum groupinstall “GNOME Desktop”
To begin the installation process, you need to install the necessary development tools and libraries, which include packages like GCC, libX11-devel, freetype-devel, zlib-devel, and libxcb-devel.