博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
更换ubuntu apt-get 源
阅读量:6842 次
发布时间:2019-06-26

本文共 1262 字,大约阅读时间需要 4 分钟。

为了优化ubuntu软件安装/更新速度,我测试了国内几家apt源的速度,发现北京交大的apt源速度相对最快,然后可以通过以下步骤更新ubuntu源

1) 备份默认的apt源

1 $ cd /etc/apt2 $ sudo cp sources.list sources.list.backup

2) 编辑

$ sudo gedit sources.list

复制粘贴以下列表:

1 deb http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse 2 deb http://archive.ubuntu.com/ubuntu/ raring-security main restricted universe multiverse 3 deb http://archive.ubuntu.com/ubuntu/ raring-updates main restricted universe multiverse 4 deb http://archive.ubuntu.com/ubuntu/ raring-proposed main restricted universe multiverse 5 deb http://archive.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse 6 deb-src http://archive.ubuntu.com/ubuntu/ raring main restricted universe multiverse 7 deb-src http://archive.ubuntu.com/ubuntu/ raring-security main restricted universe multiverse 8 deb-src http://archive.ubuntu.com/ubuntu/ raring-updates main restricted universe multiverse 9 deb-src http://archive.ubuntu.com/ubuntu/ raring-proposed main restricted universe multiverse10 deb-src http://archive.ubuntu.com/ubuntu/ raring-backports main restricted universe multiverse

 3) 注意,每次修改完apt源,一定要执行一下更新

$ sudo apt-get update

大概花了几分钟,更新完成之后,就可以使用apt来安装应用程序了。

备注:ubuntu apt源列表

 
 
 

转载于:https://www.cnblogs.com/aaronthon/p/10002153.html

你可能感兴趣的文章
23种设计模式(5):原型模式
查看>>
MySQL 5.6 GTID Replication
查看>>
数学图形(1.22) 蔓叶线
查看>>
全面分析 Spring 的编程式事务管理及声明式事务管理--转
查看>>
Unity3D研究院之在MAC上脚本XlsxWriter写入Excel .xlsx格式
查看>>
TortoiseSVN客户端重新设置用户名和密码
查看>>
Android -- 获取汉字的首字母
查看>>
nutch搏斗之一
查看>>
MySQL -- 全文检索(布尔全文检索)
查看>>
OAF SubTabLayoutBean隐藏子控件
查看>>
webpack CommonsChunkPlugin详细教程
查看>>
Java RSA 加密 解密 签名 验签
查看>>
printFinal用法示例
查看>>
ELK系列~Nxlog日志收集加转发(解决log4日志换行导致json转换失败问题)
查看>>
git命令合并分支代码
查看>>
cookie和session
查看>>
cmd批处理中set /a和set /p的区别介绍
查看>>
Forms authentication timeout vs sessionState timeout
查看>>
C++虚函数表分析
查看>>
如何理解“哲学家们只是用不同的方式解释世界,而问题在于改变世界”?
查看>>