如何最小化 apt source.list

如何最小化 apt source.list

我认为这些行可以修剪成几行。所以我需要一些建议。我怎样才能改进这些sources.list?

apt/sources.list,最新 Debian 版本:

deb http://security.debian.org/ wheezy/updates main contrib
deb-src http://security.debian.org/ wheezy/updates main contrib
deb http://ftp.debian.org/ wheezy-updates main contrib
deb-src http://ftp.debian.org/ wheezy-updates main contrib
deb http://ftp.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.debian.org/debian/ wheezy main contrib non-free
deb http://ftp.debian.org/debian sid main

答案1

resources.list 的结构没有受益于“最小化“。进一步压缩这些行并没有实际的好处。列出的所有存储库都应具有以下内容:

type [ options ] uri suite [component1] [component2] [...]

或 rfc822 格式

Types: deb deb-src
URIs: http://example.com
Suites: stable testing
Sections: component1 component2
Description: short
 long long long
[option1]: [option1-value]

您的sources.list 已经受益于您可以列出源的最短有效方法。当然,您可以使用不同的组件重复同一行,并分别对待它们:

deb http://security.debian.org/ wheezy/updates main
deb http://security.debian.org/ wheezy/updates contrib

但对于 APT 来说,这相当于:

deb http://security.debian.org/ wheezy/updates main contrib

正在解析的同时。

我怎样才能改进这些sources.list?

没有“改进”的余地。只要文件有效,APT 就不会抱怨。

相关内容