热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

Ubuntu下用多个Sources.list文件加速APT

Ubuntu下用多个Sources.list文件加速APT--Linux发行版技术-Debian信息,下面是详情阅读。
Ubuntu下用多个Sources.list文件加速APT

当多个源上都有同一个包时,只会从第一个源下载,因此应该将速度最快的源列在前头。

版本较新的apt都支持sources.list.d/目录形式的源列表,可以更方便地安排源条目例如:

$ cd /etc/apt/sources.list.d/
$ ls
00.list debian.ustc.edu.cn -> local
50.list debian.ustc.edu.cn_src -> mirrors.geekbone.org
$ ll *.list
lrwxrwxrwx 1 root root 5 2006-10-28 14:23 00.list -> local
lrwxrwxrwx 1 root root 18 2006-10-28 14:19 50.list -> debian.ustc.edu.cn
$ cat local
deb file:/home/user debs/
$ cat debian.ustc.edu.cn
deb http://debian.ustc.edu.cn/debian sid main contrib non-free
deb http://debian.ustc.edu.cn/debian-multimedia unstable main
deb http://debian.ustc.edu.cn/debian-uo sid marillat misc ustc
deb http://debian.ustc.edu.cn/debian-uo sid marillat misc ustc
deb http://debian.ustc.edu.cn/rarewares.org sid main
$ cat debian.ustc.edu.cn_src
deb-src http://debian.ustc.edu.cn/debian sid main contrib non-free
$ cat mirrors.geekbone.org
deb http://mirrors.geekbone.org/debian sid main contrib non-free

这么安排的好处是,apt系统只认*.list文件为可用的源列表,并按文件名顺序排列条目,需要增加源、剔除源或调整源优先级时,只需操作这些[0-9][0-9].list符号链接即可,而无须触动实际的列表文件。

查看原文地址
推荐阅读
author-avatar
手机用户2502931993
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有