DebianテストからDebian oldstableで単一(または複数)パッケージを抽出するには?

DebianテストからDebian oldstableで単一(または複数)パッケージを抽出するには?

可能ですか?私はDebian oldstable(jessie)にDebianテスト(buster)の特定のパッケージをインストールしようとしています。

ベストアンサー1

まず、テストブランチを次の項目に追加します/etc/apt/sources.list

deb http://security.debian.org/ testing/updates main
deb http://ftp.us.debian.org/debian testing-updates main
deb http://ftp.us.debian.org/debian testing main

/etc/apt/preferencesその後、パッケージが自動的に引き出されないようにピンテストを実行してください。

Package: *
Pin: release a=testing
Pin-Priority: -2

パッケージをテストする必要がある場合は、ターゲットバージョンを手動で指定します。システムの半分をアップグレードしないように注意してください。

# apt-get install -t testing ...

おすすめ記事