Debian 9にwine32をインストールする方法は?

Debian 9にwine32をインストールする方法は?

Debian 9.9 に wine32 をインストールしようとすると、次の問題が発生します。

# apt-get install wine32
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 wine32:i386 : Depends: libwine:i386 (= 1.8.7-2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

ベストアンサー1

32ビットアーキテクチャを有効にし、必要なすべてのパッケージをインストールする必要があります。バラよりインストールに関する注意:

sudo dpkg --add-architecture i386 && sudo apt update
sudo apt install \
      wine \
      wine32 \
      wine64 \
      libwine \
      libwine:i386 \
      fonts-wine

おすすめ記事