当管理apt源记录时,仿生更新是否比常规仿生更稳定和安全?
最近,我使用apt-get upgrade.But将我的服务器从16升级到18,我不知道如何处理我所做的apt源list.what,我在/etc/ apt /list.what中添加了以下项。列表,它是否足以在升级ubuntu之后管理apt资源。
发布于 2023-03-22 04:16:32
仿生存储库将包含原始代码,例如。以linux-generic为例,您可以找到
linux-generic | 4.15.0.20.23 | bionic | amd64, arm64, armhf, i386, ppc64el, s390x
这就是您在Ubuntu18.04初始LTS is上找到的。
(Ubuntu18.04.1&后来的ISO包括在创建18.04.1时来自仿生更新的包,因此18.04可能有比最初的18.04.2更新的软件包,但不如C4等)
仿生更新存储库将有更新的代码,即。
linux-generic | 4.15.0.206.189 | bionic-updates | amd64, arm64, armhf, i386, ppc64el, s390x
我使用了以下方法来获取我的详细信息(注意:我删除了非仿生线条)
guiverc@d7050-next:/de2900/lubuntu_64$ rmadison linux-generic
..
linux-generic | 4.15.0.20.23 | bionic | amd64, arm64, armhf, i386, ppc64el, s390x
linux-generic | 4.15.0.206.189 | bionic-security | amd64, arm64, armhf, i386, ppc64el, s390x
linux-generic | 4.15.0.206.189 | bionic-updates | amd64, arm64, armhf, i386, ppc64el, s390x
linux-generic | 4.15.0.208.191 | bionic-proposed | amd64, arm64, armhf, i386, ppc64el, s390x我不确定是否会像在您的问题中那样使用稳定或安全一词;在-updates或-security存储库中还有更多的修复程序,包括安全性修复。
https://askubuntu.com/questions/1460384
复制相似问题