今日Debian 9 Stretch安定版をインストールしました。
システムを更新したいです。しかし、source.listでパッケージのリストが見つかりませんでした。このサイトでDebian 9sources.listパッケージを見つけました。しかし、このリストはDebian 9テスト用です。安定したDebian 9で使用できますか?それともDebian 9のsource.listはどこにありますか?
システムをどのように更新しますか?
Debian 9 が昨日リリースされました。システムを更新する必要がありますか?
答え1
sources.list
Debian BetaとDebian 9(コード名緊張)
例は次のとおりですsources.list
。
deb http://ftp.us.debian.org/debian/ stretch main contrib non-free
deb http://ftp.us.debian.org/debian/ stretch-updates main contrib non-free
deb http://security.debian.org/debian-security/ stretch/updates main contrib non-free
以下は、sources.list
リダイレクトを使用してユーザーの場所に近いコンテンツを提供しようとします。
deb http://deb.debian.org/debian/ stretch main contrib non-free
deb http://deb.debian.org/debian/ stretch-updates main contrib non-free
deb http://deb.debian.org/debian-security/ stretch/updates main contrib non-free
システムを更新するには、通常どおりに進んでください。
apt-get update # Update package information from sources
apt-get upgrade # Upgrade packages
apt-get dist-upgrade # Upgrade packages that depends on new dependencies
セキュリティ更新を手動で実行するか、別の構成システムを介して計画されたアップグレードの一部として実行することをお勧めします。プリプロダクション環境でテストした後。または、パッケージをインストールすることもできますunattended-upgrades
。
より多くの情報を読むことができますここ