Site icon Ubuntu Free

Wine on Ubuntu 24.04: Install Guide

Wine logo

Running Windows apps on Ubuntu 24.04 is seamless with Wine, a free compatibility layer that brings your favorite programs and games to Linux.

In 2025, installing Wine is easier than ever, thanks to updated repositories and a thriving community.

Whether you’re launching Adobe Photoshop or classic PC games, this guide gets you started on Ubuntu 24.04 with the latest Wine setup. Let’s dive in.

How to Install Wine on Ubuntu 24.04

Follow these steps to install the latest Wine (9.2 as of Feb 2025) from WineHQ, optimized for Ubuntu 24.04:

Method 1: Install via WineHQ APT Repository

  1. Open your terminal.
  2. Enable 32-bit architecture (required for many Windows apps):
    sudo dpkg --add-architecture i386
  3. Add the WineHQ GPG key:
    sudo mkdir -p /etc/apt/keyrings
    sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
  4. Add the WineHQ repository:
    sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/noble/winehq-noble.sources
  5. Update and install Wine:
    sudo apt update
    sudo apt install --install-recommends winehq-stable -y
  6. Verify installation:
    wine --version

    (Should return “wine-9.2” or similar)

  7. Configure Wine (optional):
    winecfg
  8. Test with a Windows app (e.g., Notepad):
    wine notepad

Method 2: Install via Snap

  1. Open your terminal.
  2. Install Wine with Snap:
    sudo snap install wine-platform-8-stable --classic
  3. Launch Wine and test:
    wine --version
  4. Run a Windows app:
    wine notepad

Tip: WineHQ APT offers the latest stable release (9.2 as of Feb 2025) with full support, Snap provides an easy alternative (8.x series). For help, check the WineHQ Reddit community or WineHQ Forums.

What Makes Wine Special

Wine, started in 1993 and hosted by WineHQ, is a free compatibility layer that runs Windows apps on Linux without emulation. Unlike virtual machines, it translates Windows API calls to POSIX in real-time, making it lightweight and efficient on Ubuntu 24.04:

System Requirements

Wine in Action: Screenshots

Video: Install Wine on Ubuntu

Watch this setup guide:

How to Uninstall Wine

  1. Open your terminal.
  2. For APT installs:
    sudo apt remove --purge winehq-stable wine-stable -y
    sudo rm /etc/apt/sources.list.d/winehq-noble.sources
    sudo rm /etc/apt/keyrings/winehq-archive.key
  3. For Snap installs:
    sudo snap remove wine-platform-8-stable
  4. Clear residual files (optional):
    rm -rf ~/.wine

Community Support

Need help? Join the conversation:

More Windows-on-Linux Tools

Check out: Lutris for Ubuntu, CrossOver for Ubuntu, Steam for Ubuntu and PlayOnLinux for Ubuntu.

Exit mobile version