source.listが「テスト」を定義しているにもかかわらず、なぜDebianはBookwormにアップグレードしないのですか?

source.listが「テスト」を定義しているにもかかわらず、なぜDebianはBookwormにアップグレードしないのですか?

Debian 11 「Bullseye」以降2021年8月14日に投稿しました、これDebian 12 "Nord"それ公式「ベータ」ディストリビューション

私のDebianはなぜまだオンになっていますか?雄牛の目、Bookworms の自動更新の代わりに、私の知らせも「テスト」を指摘していますか?

私が行ったステップの詳細:

sudo apt update

次のような複数のメッセージを受け取りました。

E: Repository 'http://ftp.cz.debian.org/debian testing InRelease' changed its 'Codename' value from 'bullseye' to 'bookworm' 
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.
Do you want to accept these changes and continue updating from this repository? [y/N]

これは予想されます。私はすべての質問に「はい」と答えました。それから私はそうでした。

sudo apt upgrade
sudo apt autoremove
sudo apt full-upgrade

連続して何度も実行されたので、すべてのコマンドは次のように言います。

0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

アップグレード後も /etc/os-release にはまだイブニングが表示されます。

user@debian:~$ cat /etc/os-release | grep VERSION
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye

テスト展開は、Bookwormsで使用できるように正しく識別されます。リリース情報コマンド:

user@debian:~$ distro-info --testing
bookworm

私は次のソースを使用してきました(アップグレードの前後):

user@debian:~$ grep ^ /etc/apt/sources.list /etc/apt/sources.list.d/*
/etc/apt/sources.list:
/etc/apt/sources.list:deb http://ftp.cz.debian.org/debian/ testing main contrib non-free
/etc/apt/sources.list:deb-src http://ftp.cz.debian.org/debian/ testing main contrib non-free
/etc/apt/sources.list:
/etc/apt/sources.list:deb http://security.debian.org testing-security main contrib non-free
/etc/apt/sources.list:deb-src http://security.debian.org testing-security main contrib non-free
/etc/apt/sources.list:
/etc/apt/sources.list:deb http://deb.debian.org/debian testing-updates main contrib non-free
/etc/apt/sources.list:deb-src http://deb.debian.org/debian testing-updates main contrib non-free
/etc/apt/sources.list:
grep: /etc/apt/sources.list.d/*: No such file or directory

ベストアンサー1

インストールされた展開名自体を決定する方法base-filesパッケージ、BookwormはBullseyeがリリースされるまで更新できません。つまり、Bookwormは最初に作成されたときにBullseyeと同じバージョンを持ちます(これは、特定の安定パッケージが最初にリリースされた後にすべての新しいパッケージに対応します)。

このパッケージのBookwormバージョンは次のとおりです。8月22日アップロード;8月28日(またはその直後)ベータ版でお会いできます。

Debian 11について言及していますが、/etc/os-releaseリポジトリの設定はテストを実行していることを意味します。リリース後数日間、テストは安定リリースと一貫性を維持しますが、パッケージの移行が有効になり、パッケージが不安定からテストに移行し始めると、分岐し、最終的にはアップデートなしでパッケージがbase-filesアップグレードされることがわかります。たとえば、私sdl12-compatパック8月16日テストに移行されました。

おすすめ記事