Install Wine on Ubuntu 22.04

|
Last Updated:
|
|

Follow this tutorial to learn how to install Wine on Ubuntu 22.04.  Wine is a free and open-source software which provides the ability to run Microsoft Windows applications and computer games to run on POSIX-compliant Operating Systems, such as Linux, MacOS and  BSD.

Install Wine on Ubuntu 22.04

Install Official Wine Repository on Ubuntu

Wine is provided by the default Ubuntu universe repos. However, Wine 5.0 is the latest available version;

apt-cache policy wine64
wine:
  Installed: (none)
  Candidate: 5.0.3-3ubuntu2
  Version table:
     5.0.3-3ubuntu2 500
        500 http://us.archive.ubuntu.com/ubuntu jammy/universe amd64 Packages
        500 http://us.archive.ubuntu.com/ubuntu jammy/universe i386 Package

In order to be able to install latest Wine release, you need to install the Official Wine repository for Ubuntu 22.04, which UNFORTUNATELY are not available as of this writing.

Thus, we will continue to install the currently available Wine versions on Ubuntu 22.04;

Enable 32-bit System Support on Ubuntu 22.04

Before you can install Wine, you need to enable 32-bit system support.

sudo dpkg --add-architecture i386

Install Wine on Ubuntu

You can now install Wine by running the command below;

apt update
apt install wine64

Verify Wine Installation

Run the command below to check installed WIne version as a way to verify its installation;

wine --version

Reboot System

You can now run system reboot to ensure that Wine environment is setup;

systemctl reboot

You can start using Wine on Ubuntu 22.04 as you so wish.

wine putty.exe
Install Wine on Ubuntu 22.04

That brings us to the end of our guide on how to install Wine 6 on Ubuntu 22.04.

Further Reading

WineHQ Wiki

Other Tutorials

Install ProcessWire on Ubuntu 22.04

Install Bitwarden password manager on Ubuntu 22.04

SUPPORT US VIA A VIRTUAL CUP OF COFFEE

We're passionate about sharing our knowledge and experiences with you through our blog. If you appreciate our efforts, consider buying us a virtual coffee. Your support keeps us motivated and enables us to continually improve, ensuring that we can provide you with the best content possible. Thank you for being a coffee-fueled champion of our work!

Photo of author
koromicha
I am the Co-founder of Kifarunix.com, Linux and the whole FOSS enthusiast, Linux System Admin and a Blue Teamer who loves to share technological tips and hacks with others as a way of sharing knowledge as: "In vain have you acquired knowledge if you have not imparted it to others".

Leave a Comment