我今天安装了 Debian 9 Stretch 稳定版。
我想更新我的系统。但我没有找到sources.list的包列表。在该站点中,我找到了 Debian 9sources.list 包。但此列表适用于 Debian 9 测试。我可以将它用于稳定的 Debian 9 吗?或者 Debian 9 的sources.list 在哪里?
我如何更新我的系统?
Debian 9 于昨天发布。我需要更新系统吗?
答案1
sources.list
Debian 测试版与 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
。
您可以阅读更多信息这里