Debianテストではwine32パッケージ(Bookworm)をインストールできません。

Debianテストではwine32パッケージ(Bookworm)をインストールできません。

Debian ベータ版に wine32 パッケージをインストールしようとしています。私のコンピュータの1つは問題なく動作しますが、このコンピュータでは動作しません。

sudo dpkg --add-architecture i386
sudo apt update && sudo apt full-upgrade 
sudo apt install wine

これにより、次のパッケージがインストールされます。

libwine wine wine64

おすすめwine32

しかし、sudo apt install wine32私に与えた:

Reading package lists... Done
Building dependency tree... Done
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:
 libcurl3-gnutls : Depends: librtmp1 (>= 2.3) but it is not installable
E: Error, pkgProblemResolver::Resolve generated     breaks, this may be caused by held packages.

修正する:

インストールしようとすると、libcurl3-gnutls:i386同じ結果が表示されます。

sudo apt install libcurl3-gnutls:i386
Reading package lists... Done
Building dependency tree... Done
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:
 libcurl3-gnutls : Depends: librtmp1 (>= 2.3) but it is not installable
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.

この問題を解決できませんでした。どんなアイデアがありますか?

ベストアンサー1

librtmp1:i386手動でダウンロードしてインストールして問題を解決できましたがdpkg、依存関係が欠落していることを示すメッセージが表示されました。その後、これらのパッケージをインストールして後者を解決できますapt

sudo apt install libgmp10:i386 libgnutls30:i386 libhogweed6:i386 libnettle8:i386 zlib1g:i386 libp11-kit0:i386 libtasn1-6:i386 libffi8:i386

それから:

sudo apt install libcurl3-gnutls:i386

ついに:

sudo apt install wine32

私はhack aptがなぜこの依存関係を自分で解決できないのか理解していません。しかし、他の人がこの質問に落ちた場合に備えて。これが解決策です。

おすすめ記事