/etc/apt/sources.list 中的第 3 列(suite/release/distribution)是什么?

/etc/apt/sources.list 中的第 3 列(suite/release/distribution)是什么?

我很困惑 Ubuntu 的/etc/apt/sources.list.

来自man sources.list(为了相关性而编辑):

使用 deb 和 deb-src 类型的两个单行样式条目的格式为:

deb [ 选项1=值1 选项2=值2 ] uri 套件[组件1] [组件2] [...]
deb-src [ 选项1=值1 选项2=值2 ] uri 套件[组件1] [组件2] [...]

suite 可以指定精确路径,在这种情况下,必须省略组件,并且 suite 必须以斜杠结尾...如果 suite 未指定精确路径,则必须至少存在一个组件。

suite 还可能包含一个变量 $(ARCH),它扩展到系统上使用的 Debian 架构(例如 amd64 或 armel)。

https://wiki.debian.org/SourcesList(其中第 3 列似乎被称为“分布”):

“发行版”可以分别是发行代号/别名(stretch、buster、bullseye、bookworm、sid)或发行类(oldoldstable、oldstable、stable、testing、unstable)。如果您打算跟踪发布类,请使用类名称。

https://help.ubuntu.com/community/Repositories/CommandLine(根据相关性进行编辑):

通常.../etc/apt/sources.list 看起来像这样:

deb http://ch.archive.ubuntu.com/ubuntu/ saucy main restricted
deb-src http://ch.archive.ubuntu.com/ubuntu/ saucy main restricted

...
saucy 是您的发行版的发行名称或版本。
...
对于其他 Ubuntu 版本,您可以将 'saucy' 替换为您已安装的当前版本('precise'、'quantal'、'raring'、'saucy'、'trusty'、...) 输入 lsb_release -sc找出你的版本。

根据lsb_release -sc,我的套件/发行版/发行版是“jammy”:

$ lsb_release -sc
jammy
$

我的问题是:鉴于我的套件/发布/发行版是“jammy”,这显然是第 3 列中应该使用的值,为什么/etc/apt.sources.list文件中的某些条目的第 3 列值为jammy-securityjammy-updatesjammy-backports

$ cat /etc/apt/sources.list
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://archive.ubuntu.com/ubuntu/ jammy main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ jammy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ jammy universe
# deb-src http://archive.ubuntu.com/ubuntu/ jammy universe
deb http://archive.ubuntu.com/ubuntu/ jammy-updates universe
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu/ jammy multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy multiverse
deb http://archive.ubuntu.com/ubuntu/ jammy-updates multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src http://archive.ubuntu.com/ubuntu/ jammy-backports main restricted universe multiverse

deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security main restricted
deb http://security.ubuntu.com/ubuntu/ jammy-security universe
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security universe
deb http://security.ubuntu.com/ubuntu/ jammy-security multiverse
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security multiverse

my 中的第 3 列值sources.list似乎不是精确路径,也没有变量,并且似乎不是发行版类,因此我认为man sources.listDebian wiki 中的相应部分不适用。但我没有看到任何关于套件/发布/发行版“后缀”的描述(因为我不知道正确的称呼),例如“-updates”、“-security”或“-backports”。


如果相关:请解释术语“套件”、“分发”和“发布”在这种情况下是否可以互换使用,或者它们之间是否存在有意义的差异。从答案到这个问题,我以为我已经理解“发行版”意味着 Ubuntu vs. Debian vs. Fedora 等,所以它在这种情况下的使用(特别是 Debian wiki)使我认为我已经达到的理解变得模糊。

答案1

定义

  1. 套房 - 参见定义2e
  2. 发布 - 请参阅发展阶段
  3. 分布 - 请参阅段落 RE:发行版

关于APT

  1. jammy-*将被视为“套件”,因为套件中的所有工具都适用于给定的名称。阅读条目上方的评论。
    • 安全没有评论,因为这包含对基础软件的关键错误修复,并且预计如果安全问题影响用户,则用户有责任检查维护者的错误报告系统,因为无论用户是否受到影响,都会应用修复。
    • 向后移植包含较新版本的软件,未检查安全问题
    • 更新包括对基本系统中安装的软件包的更新,即glibc检查bash安全问题的软件包等。
  2. jammy本身就是发布。也可以看看:果酱水母
  3. Ubuntu是分布。

分阶段思考,下面的句子将说明这些阶段: Ubuntu 发行版包含当前版本 jammy,其中包含多个套件


关于源文件:

  • deb指包类型,在大多数情况下安装二进制/可执行文件。也可以deb-src,它将安装源代码。
  • http://...指 URI。
  • main指从中下载的分支。
  • restricted指的是上传权限,即只有经过批准的软件才能上传到存储库,因此普通用户只能下载。也可以指许可,即非自由软件。

相关内容