根据man sources.list下面的主要段落THE DEB AND DEB-SRC TYPES: GENERAL FORMAT和其中的一些例子说
As an example, the sources for your distribution could look like this in one-line-style
format:
deb http://us.archive.ubuntu.com/ubuntu xenial main restricted
deb http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://us.archive.ubuntu.com/ubuntu xenial-updates main restricted
or like this in deb822 style format:
Types: deb
URIs: http://us.archive.ubuntu.com/ubuntu
Suites: xenial xenial-updates
Components: main restricted
Types: deb
URIs: http://security.ubuntu.com/ubuntu
Suites: xenial-security
Components: main restricted
基于以上:
/etc/apt/sources.list以及来自 Ubuntu 18.04的未编辑文件
第 5 行有两个组成部分,即主要部分和受限部分。
deb http://in.archive.ubuntu.com/ubuntu/ bionic main restricted
第 16 行有一个组件,即宇宙
deb http://in.archive.ubuntu.com/ubuntu/ bionic universe
第 26 行有一个组件,即多元宇宙
deb http://in.archive.ubuntu.com/ubuntu/ bionic multiverse
附图中的第 5 项,source code可以通过取消注释第 6 行来启用
# deb-src http://in.archive.ubuntu.com/ubuntu/ bionic main restricted
根据
man sources.list
下面的主要段落THE DEB AND DEB-SRC TYPES: GENERAL FORMAT
和其中的一些例子说基于以上:
/etc/apt/sources.list
以及来自 Ubuntu 18.04的未编辑文件第 5 行有两个组成部分,即主要部分和受限部分。
第 16 行有一个组件,即宇宙
第 26 行有一个组件,即多元宇宙
附图中的第 5 项,
source code
可以通过取消注释第 6 行来启用观察:
当您通过 GUI 勾选和取消勾选这些刻度线时,文件
/etc/apt/sources.list
行可能会有所不同.. 就像他们没有取消注释该行一样,而是他们会添加带有一些注释等的其他行。如果您不使用 GUI 更改这些设置,则始终可以使用具有恒定行号的脚本来编辑文件。
所以在定义行号时要小心你的脚本..