wine32をインストールするときに満たされていない依存関係の問題を解決するには?

wine32をインストールするときに満たされていない依存関係の問題を解決するには?

私のワインのバージョン情報を表示します:

wine --version
it looks like wine32 is missing, you should install it.
as root, please execute "apt-get install wine32"
wine-1.8.7 (Debian 1.8.7-2)

情報に従ってwine32をインストールします。

sudo apt-get install -y 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.

libwine:i386をインストールすると、満たされていない依存関係がより多く表示されます。

sudo apt install -y libwine:i386
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:
 libwine:i386 : Depends: libglu1-mesa:i386 but it is not going to be installed or
                         libglu1:i386
                Recommends: libgl1-mesa-glx:i386 but it is not going to be installed or
                            libgl1:i386
                Recommends: libgl1-mesa-dri:i386 but it is not going to be installed
                Recommends: libasound2-plugins:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

パラメータを使用してインストールしてみてくださいf

sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

すべての依存関係がインストールされていますか?

wine --version
it looks like wine32 is missing, you should install it.
as root, please execute "apt-get install wine32"
wine-1.8.7 (Debian 1.8.7-2)

ベストアンサー1

おすすめ記事