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)

관련 정보