sources.list
详解ubuntu的sources.list文件
Ubuntu使用apt
来管理软件包,apt
可以将软件库存储在如下文件中:
/etc/apt/sources.list
和/etc/apt/sources.list.d/
目录中带.list
后缀的文件中。可以使用命令man sources.list
来查看apt
的完整存储机制。通过编辑这些文件,我们可以添加、删除、或者临时关闭某些软件库。
注意:在更改上述文件之前,最好先备份一下。例如,
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
下面详细分析文件sources.list的格式和写法
- 以字符’#'开头的行代表该行是一行注释
- 不以’#'开头的行是
apt repository
,它的格式为:
详解 deb
deb后面的内容有三大部分:deb URI section1 section2
下面以deb http://us.archive.ubuntu.com/ubuntu/ trusty universe
为例进行说明。
###URI: 库所在的地址
URI支持http,ftp,以及本地文件cdrom等路径。
我们访问实例的源路径:http://us.archive.ubuntu.com/ubuntu/ 可以看到如下内容:
其中,比较重要的就是dists
目录和pool
目录。dists
目录包含了当前库的所有软件包的索引。这些索引通过系统版本分类在不同的文件夹。
进入dists
目录,看到如下内容:
可以看到很多文件夹,这些文件夹都是以下格式命名的:
codename
codename-backports
codename-proposed
codename-security
codename-updates
其中codename就是Ubuntu不同版本的代号,上图中的文件夹名其实就是对应了deb后面的section1。
可以看到Ubuntu14.04版本对应的代号是trusty。上述文件夹的差别在于:
Security - important Security Updates.
Updates - recommended Updates.
Proposed - Pre-released Updates.
Backports - Unsupported Updates.
因此我们可以根据需要填写不同的section1。
打开上面的任意一个文件夹,可以看到如下内容:
有main, multiverse, restricted, universe文件夹,这些文件夹名其实对应deb后面的section2。这些文件夹里面包含了不同软件包索引。这几个文件夹内包的区别在于:
main: 完全的自由软件。
restricted: 不完全的自由软件。
universe: Ubuntu官方不提供支持与补丁,全靠社区支持。
multiverse:非自由软件,完全不提供支持和补丁。
如果我们打开main目录下的binary-i386子目录下的Packages.gz文件,可以看到如下内容:
Package: flashplugin-downloader
Architecture: i386
Version: 29.0.0.171ubuntu0.17.10.1
Multi-Arch: foreign
priority: optional
Section: multiverse/web
Source: flashplugin-nonfree
Origin: Ubuntu
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Bart Martens <[email protected]>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 25
Depends: flashplugin-installer (>= 11.1.102.55ubuntu3)
Filename: pool/multiverse/f/flashplugin-nonfree/flashplugin-downloader_29.0.0.171ubuntu0.17.10.1_i386.deb
Size: 1894
MD5sum: a25f9bd19b8c6b4247e7b4f556f96eb5
SHA1: 08358cfd6a59f7724ef6fab66dc0cfabe4792c17
SHA256: 0ee2d3fa22cd37e80cd9180b5795c7dc8ac5de942b23c56252fde31276b93fe1
Homepage: http://www.adobe.com/products/flashplayer.html
Description: Adobe Flash Player plugin installer (transitional package)
Description-md5: 66ea91f4e504085408ea841953dc65d0
......
说明: Packages.gz这个文件其实是一个“索引”文件,里面记录了各种包的包名Package、运行平台(Architecture)、版本号(Version)、依赖关系(Depends)、deb包地址(Filename)等 。注意到Filename指向的是源服务器pool目录下的某个deb。因此我们可以猜测,apt-get install
某个软件时,其实就是基于这些Packages.gz来计算依赖关系,然后根据其中的Filename地址来下载所需的deb,然后再执行dpkg -i xxx.deb
来完成软件包的安装。
注意:修改sources.list之后需要执行命令sudo apt-get update
Ubuntu的官方库地址:https://launchpad.net/ubuntu/+archivemirrors
Ubuntu中国的官方地址:http://mirrors.aliyun.com/ubuntu/
经过上面分析,比如Ubuntu18,04的sources.list可以写成如下格式:
deb http://mirrors.aliyun.com/ubuntu bionic main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-updates main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-security main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-proposed main multiverse restricted universe
deb http://mirrors.aliyun.com/ubuntu bionic-backports main multiverse restricted universe
相关阅读
Spring配置过程中要考虑两个监听器:ContextLoaderListener与RequestContextListener。 ContextLoaderListener extends ContextLoa
c++builder2010提示缺少borlndmm.dll和borlndmm.dat文
1、工程---options----packages取消build with runtime packages前面的勾2、工程---options----c++ linkerdynamic RTL 设定为fal
由于通信协议和消息格式在 Web 技术圈子里已经达到了标准化,我们知道在通常的开发过程中,对于对象的Interface一定具备相应的SDK描
warning: 远程 HEAD 指向一个不存在的引用,无法检出。 使用git clone下载时出现“warning: 远程 HEAD 指向一个不存在的引用,无法
官方文档:https://sourceware.org/binutils/docs-2.30/ld/index.html#SEC_Contents所有创建可执行文件的最后一步就是链接。它是由