İnstall Wine Debian
Verify 64-bit architecture. The following command should respond with "amd64".
$ dpkg --print-architecture
See if 32-bit architecture is already installed. The following command should respond with "i386"
$ dpkg --print-foreign-architectures
If it does not display "i386", execute the following.
$ sudo dpkg --add-architecture i386
Re-check with
$ dpkg --print-foreign-architectures
Download and add the WineHQ repository key
$ sudo mkdir -pm755 /etc/apt/keyrings
$ sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
Add the Wine repository
$ sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bookworm/winehq-bookworm.sources
Update the package database
$ sudo apt update
Install Wine
The next command installs Wine Stable. To install Wine Development or Wine Staging, replace winehq-stable by winehq-devel or winehq-staging
Sometimes Wine Stable is unavailable, but Wine Development and Wine Staging can still be installed.
$ sudo apt install --install-recommends winehq-stable
Verify the installation
$ wine --version
No comments