Skip to main content

Install Wine WOW64

Download the latest WOW64 prebuilt build from this location, using the "Wine 10.0" version as an example:

Download:

wget https://github.com/Kron4ek/Wine-Builds/releases/download/10.0/wine-10.0-amd64-wow64.tar.xz

Extract:

tar -xf wine-10.0-amd64-wow64.tar.xz

Usage:

box64 ./wine-10.0-amd64-wow64.tar.xz/bin/wine [Windows executable]

Temporarily add Wine WOW64 to PATH:

export PATH="$HOME/wine-10.0-amd64-wow64/bin:$PATH"

Permanently add Wine WOW64 to PATH:

vim ~/.bashrc
export PATH="$HOME/wine-10.0-amd64-wow64/bin:$PATH"
source ~/.bashrc

Configure Wine environment and install wine-mono

winecfg

Read more: What is PATH and how to add content to PATH? »