转载:http://forum.ubuntu.org.cn/viewtopic.php?t=366506

概貌:
源列表主文件为 /etc/apt/sources.list,另兼取 /etc/apt/sources.list.d/*,最终结果以并集论。
源列表文件以行为单位,每行分多个字段,字段间以空白符分隔。井号(#)开头行为注释行。

字段说明:
第一字段,指示包类型。
取值只有「deb」「deb-src」两个,分别对应二进制包和源码包。通常只有二进制包对我们有用。
第二字段,指示镜像站点,即「源」!
URL 通常需要定位到某个目录,一般是打开该目录就能看到有「dists」「pool」两个子目录。看看 http://ftp.cn.debian.org/debianhttp://ftp.sjtu.edu.cn/ubuntu/
第三字段,指示包的「版本」,姑且称为「仓库」。
打开一个源,再进入「dists」子目录可见该「源」中有哪些「版本」可用,就是那些子目录。通常都是大小版本用减号(-)连在一起命名。
很明显大版本号即系统的版本名称,比如「squeeze」「wheezy」。没有减号连接小版本的就是主版本。
Debian 的小版本名称自 squeeze 起与 Ubuntu 基本相同。除主版本外,小版本有
「security」,Ubuntu 用于指安全性更新。即影响系统安全的 bug 修补。对此,Debian 特殊一些,见下文。
「updates」,非安全性更新。即不影响到系统安全的 bug 修补。
「proposed-updates」,预更新。小 beta 版。过后会进入「updates」或「security」。Ubuntu 仅用「proposed」,无后缀「updates」。
「backports」,后备。某系统版本自正式发行后,其所有软件便会冻结版本号(按原始软件发布时间论),所有软件只修 bug,不增加任何功能。但有些人可能需要更新的版本所提供的新功能,甚至某些较新的软件根本就没有。该仓库正因此而设,但欠官方维护,且可能在系统正式发布之后过一段时间才有效。此仓库版本处于第二优先顺序,除非特别指明或原来没有的软件,否则不会被安装。其余版本都处于第一优先顺序。
后续字段,指示包许可类型。
后续字段排名不分先后,最终结果取其并集。
按包本身的许可及所直接依赖的包的许可划分。打开一个源,进入「dists」子目录,然后再进入某个版本目录,又可见几个子目录。
Debian 最多有三种
「main」,本身是自由软件,且所有直接依赖的包也都是自由软件。
「contrib」,本身是自由软件,但直接依赖的包中有某个是非自由软件。
「non-free」,本身并非自由软件,无论依赖如何。当然,该软件本身是可以免费使用的。
Ubuntu 最多有四种
「main」,官方维护的自由软件。
「universe」,社区维护的自由软件。
「restricted」,设备专有驱动。
「multiverse」,同 Debian 的「non-free」。
某些另类的第三方源,不排除存在上述几种之外的可能。总之,打开仓库目录自己看。
特别之处:
Debian 安全性更新
不像 Ubuntu 放在「security」仓库,而是放在单独一个源中。各大镜像站通常都把一般的包放在根下来一级的「debian」目录中,而安全性更新则会放在「debian-security」目录中,如果有的话。
Debian 官方建议,所有安全性更新,只从官方(http://security.debian.org/debian-security)更新,不要用其它的镜像站,除非你对它非常放心。
安全性更新的第三字段形式固定为「版本名/updates」,比如「squeeze/updates」「wheezy/updates」。
Debian 多媒体源
一些多媒体软件因牵涉到版权问题,Debian 官方并未收录,有一网站专门填补该空缺,见 http://www.deb-multimedia.org
最后忠告:
不要启用太多的源,同一「版本」的源启用一个即可,否则容易引起混乱。
实例:
Debian 7 wheezy

#deb http://ftp.tw.debian.org/debian wheezy main contrib non-free
#deb http://security.debian.org/debian-security wheezy/updates main contrib non-free
#deb http://ftp.tw.debian.org/debian wheezy-updates main contrib non-free
## deb http://ftp.tw.debian.org/debian wheezy-proposed-updates main contrib non-free
#deb http://ftp.tw.debian.org/debian-multimedia wheezy main non-free
#deb http://ftp.tw.debian.org/debian wheezy-backports main contrib non-free
deb http://ftp.cn.debian.org/debian wheezy main contrib non-free
deb http://ftp.cn.debian.org/debian-security wheezy/updates main contrib non-free
deb http://ftp.cn.debian.org/debian wheezy-updates main contrib non-free
# deb http://ftp.cn.debian.org/debian wheezy-proposed-updates main contrib non-free
deb http://ftp.cn.debian.org/debian-multimedia wheezy main non-free
deb http://ftp.cn.debian.org/debian wheezy-backports main contrib non-free
#deb http://ftp.sjtu.edu.cn/debian wheezy main contrib non-free
#deb http://security.debian.org/debian-security wheezy/updates main contrib non-free
#deb http://ftp.sjtu.edu.cn/debian wheezy-updates main contrib non-free
## deb http://ftp.sjtu.edu.cn/debian wheezy-proposed-updates main contrib non-free
#deb http://ftp.cn.debian.org/debian-multimedia wheezy main non-free
#deb http://ftp.sjtu.edu.cn/debian wheezy-backports main contrib non-free
#deb http://ftp.debian.org/debian wheezy main contrib non-free
#deb http://security.debian.org/debian-security wheezy/updates main contrib non-free
#deb http://ftp.debian.org/debian wheezy-updates main contrib non-free
## deb http://ftp.debian.org/debian wheezy-proposed-updates main contrib non-free
#deb http://www.deb-multimedia.org wheezy main non-free
#deb http://ftp.debian.org/debian wheezy-backports main contrib non-free

Ubuntu 13.04 raring

deb http://debian.ustc.edu.cn/ubuntu/ raring main universe restricted multiverse
deb http://debian.ustc.edu.cn/ubuntu/ raring-security main universe restricted multiverse
deb http://debian.ustc.edu.cn/ubuntu/ raring-updates main universe restricted multiverse
# deb http://debian.ustc.edu.cn/ubuntu/ raring-proposed main universe restricted multiverse
deb http://debian.ustc.edu.cn/ubuntu/ raring-backports main universe restricted multiverse
#deb http://ftp.sjtu.edu.cn/ubuntu/ raring main universe restricted multiverse
#deb http://ftp.sjtu.edu.cn/ubuntu/ raring-security main universe restricted multiverse
#deb http://ftp.sjtu.edu.cn/ubuntu/ raring-updates main universe restricted multiverse
## deb http://ftp.sjtu.edu.cn/ubuntu/ raring-proposed main universe restricted multiverse
#deb http://ftp.sjtu.edu.cn/ubuntu/ raring-backports main universe restricted multiverse
#deb http://mirrors.163.com/ubuntu/ raring main universe restricted multiverse
#deb http://mirrors.163.com/ubuntu/ raring-security main universe restricted multiverse
#deb http://mirrors.163.com/ubuntu/ raring-updates main universe restricted multiverse
## deb http://mirrors.163.com/ubuntu/ raring-proposed main universe restricted multiverse
#deb http://mirrors.163.com/ubuntu/ raring-backports main universe restricted multiverse

Debian、Ubuntu 源列表说明的更多相关文章

  1. 使用apt-mirror建立局域网内的Debian/Ubuntu源镜像

    转:http://forum.ubuntu.org.cn/viewtopic.php?t=41791 第一次翻译,翻译得不好还请大家见谅,多多指出错误~!:) 原文可以见如下的贴子:http://fo ...

  2. [转] 停止支持的老版本ubuntu源列表-old-releases

    我使用的是ubuntu 9.10,在网上找了大半个月之后,今天终于找到了可用的源地址.感谢这位cgjcgs仁兄. 点击阅读原文 ubuntu的普通版本支持的时间都有限,过了支持的时间,更新源都会被停用 ...

  3. ubuntu源列表(清华,阿里,官方,选一即可)

    Ubuntu的源列表在/etc/apt/sources.list中,替换即可 #清华的源deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial m ...

  4. debian 6软件更新源列表

    deb http://ftp.debian.org/debian/ squeeze main non-free contribdeb http://ftp.debian.org/debian/ squ ...

  5. 中国区常用ubuntu源

    1.首先备份Ubuntu 源列表sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup (备份下当前的源列表) 2.修改更新源sudo g ...

  6. 使用apt-mirror建立本地debian仓库源

    先介绍一下环境: 主机:Win7 虚拟机:VirtualBox + Debian7 由于软件源的体积比较大,所以我又给虚拟机添加了一块50GB的虚拟硬盘(给虚拟机添加虚拟硬盘的方法参见:http:// ...

  7. ubuntu 12.10 sourcelist软件更新源列表(zz)

        ubuntu 12.10正式版已经发布了,国内各大开源软件源也陆续更新了资源.今天分享一下ubuntu 12.10 软件更新源列表. 首先,备份一下ubuntu 12.04 原来的源地址列表文 ...

  8. ubuntu 12.10 软件更新源列表

    ubuntu 12.10正式版已经发布了,国内各大开源软件源也陆续更新了资源.今天分享一下ubuntu 12.10 软件更新源列表. 首先,习惯性的备份一下ubuntu 12.04 原来的源地址列表文 ...

  9. ubuntu修改源列表sourcelist的方法

    1.备份源列表 sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup 2.找到对应版本的源,可以在以下界面当中找到,主要版本要对.htt ...

随机推荐

  1. iBatis之Iterator的使用

    一:前言 现在这个项目使用的是iBatis,我刚刚开始的时候说是用MyBatis,因为我以前用过,觉得还是比较好用的啊,而且不像iBatis样,查什么一个字段不能多也不能少,觉得好无语啊. 二:内容 ...

  2. c#之字符串函数

    1.常用的字符串函数 Compare 比较字符串的内容,考虑文化背景(场所),确定某些字符是否相等 int Compare(string str1,string str2) int Compare(s ...

  3. UITableView学习之辨析两个方法:⓵dequeueReusableCellWithIdentifier与⓶dequeueReusableCellWithIdentifier:forIndexPath:

    使用storyboard显示UITableView时,如果不修改系统默认生成的tableView:cellForRowAtIndexPath:方法中的代码,必须为UITableViewCell注册(填 ...

  4. webstorm es6 语法报错

    设置settings javascript language version后 <script>标签加个 type <script type="text/ecmascrip ...

  5. bzoj 1951 lucas crt 费马小定理

    首先假设输入的是n,m 我们就是要求m^(Σ(c(n,i) i|n)) mod p 那么根据费马小定理,上式等于 m^(Σ(c(n,i) i|n) mod  (p-1)) mod p 那么问题的关键就 ...

  6. csrf_execmp

    参考;https://www.cnblogs.com/zhaof/p/6281482.html 全局: 中间件 django.middleware.csrf.CsrfViewMiddleware 局部 ...

  7. 原生sql和django的事务控制

    def test(request): with connections['default'].cursor() as c: try: with transaction.atomic(using='de ...

  8. mysql六:索引原理与慢查询优化

    一 介绍 为何要有索引? 一般的应用系统,读写比例在10:1左右,而且插入操作和一般的更新操作很少出现性能问题,在生产环境中,我们遇到最多的,也是最容易出问题的,还是一些复杂的查询操作,因此对查询语句 ...

  9. 24式太极拳:3D动画演示(图文)

    http://blog.sina.com.cn/s/blog_4be33b740102e9ae.html 24式太极拳:3D动画演示(图文) (2013-03-10 18:45:55) 转载▼ 标签: ...

  10. JAVA 开发工具 市场状况

    转载:http://blog.csdn.net/hj7jay/article/details/52250755 2016 JAVA 流行的开发工具 最流行的工具并不一定是“最好的”,对于开发来说,什么 ...