Ubuntu 源使用帮助
Posted flyinggod
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 源使用帮助相关的知识,希望对你有一定的参考价值。
地址
https://mirrors.ustc.edu.cn/ubuntu/
说明
Ubuntu 软件源
收录版本
所有 Ubuntu 当前支持的版本,包括开发版,具体版本见 https://wiki.ubuntu.com/Releases
对于 Ubuntu 不再支持的版本,请参考 Ubuntu Old Releases 源使用帮助
使用说明
图形界面配置(新手推荐)
依次打开:系统设置,软件和更新。在 下载自
中选择 其他站点
,然后在中国的条目 下选择 mirrors.ustc.edu.cn
。
下面是 Ubuntu 16.04 的操作示意图:
手动更改配置文件
Warning-- 操作前请做好相应备份
一般情况下,将 /etc/apt/sources.list
文件中 Ubuntu 默认的源地址 http://archive.ubuntu.com/
替换为 http://mirrors.ustc.edu.cn
即可。
可以使用如下命令:
sudo sed -i ‘s/archive.ubuntu.com/mirrors.ustc.edu.cn/g‘ /etc/apt/sources.list
Tips:
如果你在安装时选择的语言不是英语,默认的源地址通常不是 http://archive.ubuntu.com/
, 而是 http://<country-code>.archive.ubuntu.com/ubuntu/
,如 http://cn.archive.ubuntu.com/ubuntu/
, 此时只需将上面的命令进行相应的替换即可,即sudo sed -i ‘s/cn.archive.ubuntu.com/mirrors.ustc.edu.cn/g‘ /etc/apt/sources.list
。
当然也可以直接编辑 /etc/apt/sources.list
文件(需要使用 sudo)。以下是 Ubuntu 16.04 参考配置内容:
# 默认注释了源码仓库,如有需要可自行取消注释 deb https://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse # deb-src https://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse # deb-src https://mirrors.ustc.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse # deb-src https://mirrors.ustc.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-security main restricted universe multiverse # deb-src https://mirrors.ustc.edu.cn/ubuntu/ xenial-security main restricted universe multiverse # 预发布软件源,不建议启用 # deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse # deb-src https://mirrors.ustc.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse
更改完 sources.list
文件后请运行 sudo apt-get update
更新索引以生效。
Tips:
使用 HTTPS 可以有效避免国内运营商的缓存劫持。
转载自: http://mirrors.ustc.edu.cn/help/ubuntu.html
以上是关于Ubuntu 源使用帮助的主要内容,如果未能解决你的问题,请参考以下文章