How to Install and Set Up Wine on Linux Mint 22.pdf
karim577821
25 views
15 slides
Sep 02, 2025
Slide 1 of 15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
About This Presentation
Wine is a tool that enables users to execute Windows software, such as apps, programs, and games, on a Linux machine. Windows and Linux are two completely different environments, and therefore, they do not support programs or applications meant for the other system. If you are using Linux Mint 22 an...
Wine is a tool that enables users to execute Windows software, such as apps, programs, and games, on a Linux machine. Windows and Linux are two completely different environments, and therefore, they do not support programs or applications meant for the other system. If you are using Linux Mint 22 and wish to run some Windows applications, you can install Wine. With Wine, you will be able to run Windows programs on Linux Mint as it provides a compatibility layer for the operating system. đˇ
This post will teach you how to install and set up Wine on Linux Mint 22.
1/14
September 2, 2025
How to Install and Set Up Wine on Linux Mint 22
greenwebpage.com/community/how-to-install-and-set-up-wine-on-linux-mint-22/
Tutorials
by Karim Buzdar
September 2, 2025
Wine is a tool that enables users to execute Windows software, such as apps, programs,
and games, on a Linux machine. Windows and Linux are two completely different
environments, and therefore, they do not support programs or applications meant for the
other system. If you are using Linux Mint 22 and wish to run some Windows applications,
you can install Wine. With Wine, you will be able to run Windows programs on Linux Mint
as it provides a compatibility layer for the operating system.
This post will teach you how to install and set up Wine on Linux Mint 22.
How to Install Wine on Linux Mint 22?
You may install Wine on Linux Mint 22 from the default Linux repository or the official
Docker repository and configure it with the âwinecfgâ command. Here are various
methods for installing Wine on the Linux Mint system:
Method 1: Using the Default Linux Mint Repository
The primary Wine packages compatible with Linux Mint can be installed using the âaptâ
package manager. It automatically downloads the packages from the default Linux Mint
repository. It hosts several Wine packages.
To install the Wine package on Linux Mint 22, use the default Linux repository.
Step 1: Update System Repository
You need to confirm that the package is updated by the kernel repository first:
sudo apt update && sudo apt upgrade
2/14
Step 2: Enable 32-bit Architecture
If you have a 64-bit architecture system, but wish to run 32-bit Windows programs in
Wine on your Linux system. You must enable the 32-bit architecture on Windows:
sudo dpkg --add-architecture i386
Step 3: Install Wine on Linux Mint
Now, install Wine with the command below:
sudo apt install wine -y
Step 4: Verification
You may use the following command to see if Wine is currently running:
3/14
wine --version
As noted, the current one is 9.0 of Wine has been installed.
Method 2: Using the Official WineHQ Repository
To install the latest version, install it from the official WineHQ repository. Hence, it is
mandatory to add/import WineHQâs official repository into the system. By doing this, it will
also update automatically through the package manager on your system whenever a new
version is released.
To install Wine on your device using the official WineHQ wine repository, follow the
subsequent instructions:
Step 1: Update and Upgrade System Repository
Start by updating and upgrading the systemâs package repository by executing this
command:
sudo apt update && sudo apt upgrade
Step 2: Enable 32-bit Architecture
If you are running a 64-bit architecture system, go ahead and enable 32-bit architecture
through the command.
sudo dpkg --add-architecture i386
4/14
Step 3: Make a Folder
Make the folder that will have the character associated with the GPG key:
sudo mkdir -pm755 /etc/apt/keyrings
Here:
The p refers that if the parent folders do not already exist, they will be created.
The m flag will define the directoryâs permissions, so here -m755 means the directoryâs
owner is almighty, but others have restricted permissions.
The default dir âkeyringsâ will be created under the string â/etc/apt/keyringsâ, which
will hold the new directory.
Step 4: Download the Wine GPG Key
Now, execute the next command as follows concerning Wineâs repository:
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-
builds/winehq.key
WineHQ GPG indeed has a GPG key, and you can download it by running the command.
The path is named as: â/etc/apt/keyrings/winehq-archive.keyâ.
Step 5: Add WineHQ Repository
5/14
Install the WineHQ repository by executing the command given below straight to your
Linux Mint:
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-
builds/ubuntu/dists/jammy/winehq-jammy.sources
If you are using Linux Mint version 21, then the second command is the right choice for
you:
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-
builds/ubuntu/dists/focal/winehq-focal.sources
Step 6: Update System
After that, run the following command to refresh:
sudo apt update
Step 7: Install Wine on Linux Mint
6/14
Install the most recent version of Wine that is trustworthy, easy to use, and stable on your
device through the command given below:
sudo apt install --install-recommends winehq-stable -y
Important: You know there are Wineâs staging and dev versions also. The staging one
has experimental add-ons and enhancements under testing, while the development one
is mainly intended for those who want to check the newest features and support in its
evolution.
Should you prefer to acquire the development or staging release, use the command
above to substitute âwinehq-stableâ with âwinehq-develâ or âwinehq-staging.â
Step 8: Verification
In the last step, you need to verify that Wine has been configured and installed correctly
on your computer by running the command:
wine --version
As you can see, Wine has been successfully installed on the machine, and the newest
version is shown in its shell.
How to Set Up Wine on Linux Mint 22?
Now that Wine is properly installed on Linux Mint, you may need to do some additional
configuration. To modify Wineâs Environment, use the command below:
winecfg
7/14
Then, you will be greeted by the configuration dialogue box, which will prompt you to
install Wine Mono by telling you,â You need to install Wine Mono!â Click on Install.
Then, you will see a new configuration window in Wine with many options available for
you to configure, like Drivers, Audio, Applications, and so on. In this case, we will change
the version of Windows to be emulated to be âWindows 11â:
Make sure to hit âApplyâ and âOKâ after you are through the setup so that changes made
will be captured, because if those buttons are not pressed, changes will not be saved:
8/14
How to Run Windows Applications Using Wine on Linux Mint 22?
Now that you have installed and configured Wine, you can use it to run Windows
applications. The only prerequisite is to have the setup EXE file of the application saved
on your computer and then run it through Wine to install. If, for example, you plan to
install the âNotepad++â Windows application using Wine, follow the procedure below:
Step 1: Download Notepad++ Installer
First, go to the official Notepad++ website and download its EXE file on your computer:
9/14
Step 2: Navigate to the Downloads Directory
Then, go to the terminal and navigate to the âDownloadsâ folder containing the file:
cd Downloads
ls
And indeed, the âDownloadsâ directory consists of the installer âNotepad++â file:
Step 3: Install Notepad++ on Linux Mint Using Wine
To install the Notepad++ Windows application on Linux Mint, issue the command wine
and include the installer file name:
wine npp.8.8.1.Installer.x64.exe
From the output below, we have noted that the installation of Notepad++ is currently
ongoing:
Step 4: Install/Set up Notepad++ on Linux Mint
These are the steps to install Notepad++ on the system. Choose the installation location
and click on âNextâ:
10/14
Click on âNext,â and the application will be installed on the system.
Click on the âInstallâ button to install Notepad++ on the system:
Tap on the âFinishâ button after the installation has completed:
11/14
The following image shows Notepad++, which has been installed. This confirms that the
Installation of Notepad++ using Wine was successful:
How to Remove Windows Applications Installed With Wine on
Linux Mint 22?
For those who are looking to remove a specific Windows application installed using Wine,
follow the provided steps:
Step 1: Launch the Add/Remove Programs window
The first step is to run the command âwine uninstaller,â which will open the âAdd/Remove
Programsâ window:
wine uninstaller
12/14
Now, the Add/Remove Programs window is visible, as seen below. The program can be
used to uninstall applications installed through Wine:
Step 2: Choose Windows Application for Removal
Choose the Windows application you want from the system and click on
âModify/Removeâ. As an example, remove the Notepad++ application. You may select
any application available to remove:
Step 3: Uninstall the Windows Application
Now, click on the âUninstallâ button to remove or uninstall it:
13/14
After that, the uninstallation of âNotepad++â has been completed and is displayed below.
To finish, click the âCloseâ button to exit the window.
How to Remove Wine from Linux Mint 22?
In case you do not use Wine anymore, simply removing it from your Linux Mint will be
straightforward by executing this command:
sudo apt autoremove wine* --purge -y
You may also want to delete the Wine repository from your computer by running this
command:
sudo rm /etc/apt/sources.list.d/winehq-jammy.sources
14/14
That will conclude the instructions for installing, configuring, and uninstalling Wine on
Linux Mint.
Conclusion
Wine allows users to run multiple applications designed for Windows on their Linux Mint
system. Wine can be installed in the systemâs default Linux repository or the official
WineHQ repository for Linux Mint. If you prefer to have the latest version of Wine, install
using the official repository. This will allow the installation, execution, and management of
any desired Windows application on the system. This article demonstrates how to install,
configure, and uninstall Wine on the Linux Mint system.