Debian Jessie: 依存関係の問題により libkrb5support0:amd64 構成が妨げられる

Debian Jessie: 依存関係の問題により libkrb5support0:amd64 構成が妨げられる

オペレーティングシステムを使用してDockerコンテナを実行しています。

PRETTY_NAME="Debian GNU/Linux 8 (jessie)"
NAME="Debian GNU/Linux"
VERSION_ID="8"
VERSION="8 (jessie)"
ID=debian
HOME_URL="http://www.debian.org/"
SUPPORT_URL="http://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

インストールしようとしています。openjdk-8-jdk

私は適切なソース構成リポジトリで確実に使用できます。

# apt search openjdk-8-jdk
Sorting... Done
Full Text Search... Done
openjdk-8-jdk/unstable 8u275-b01-1 amd64
  OpenJDK Development Kit (JDK)

openjdk-8-jdk-headless/unstable 8u275-b01-1 amd64
  OpenJDK Development Kit (JDK) (headless)

インストールしようとするとエラーが発生します。

Processing triggers for libc-bin (2.19-18+deb8u10) ...
dpkg: dependency problems prevent configuration of libkrb5support0:amd64:
 libkrb5support0:amd64 depends on libc6 (>= 2.25); however:
  Package libc6:amd64 is not configured yet.

dpkg: error processing package libkrb5support0:amd64 (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of libk5crypto3:amd64:
 libk5crypto3:amd64 depends on libc6 (>= 2.25); however:
  Package libc6:amd64 is not configured yet.
 libk5crypto3:amd64 depends on libkrb5support0 (>= 1.16); however:
  Package libkrb5support0:amd64 is not configured yet.

dpkg: error processing package libk5crypto3:amd64 (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libkrb5support0:amd64
 libk5crypto3:amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)

私は試したこれ解決策が機能せず、エラーが発生します。

# dpkg --configure --pending
dpkg: error: parsing file '/var/lib/dpkg/status' near line 244 package 'libk5crypto3:amd64':
 Config-Version for package with inappropriate Status

この場合、何を確認できますか?

ベストアンサー1

Debian Jessie(8)は6月20日から中止されました。

openjdk-8-jdkGLIBC 2.25以降が必要ですが、Jessieは2.19しかないため十分ではありません。ソースからGLIBX 2.25をコンパイルすることはできますが、これに依存する他の多くのものが実行されず、システムが利用できなくなる可能性があります。

実行可能な唯一のオプションは、GLIBC 2.25を使用してBusterにアップグレードすることです。

おすすめ記事