Ubuntu配置篇 | apt切换为国内源
Posted Neutionwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu配置篇 | apt切换为国内源相关的知识,希望对你有一定的参考价值。
一、一些国内源
1.1 华为云
http://repo.huaweicloud.com/ubuntu/
1.2 阿里云
http://mirrors.aliyun.com/ubuntu/
1.3 清华大学
https://mirrors.tuna.tsinghua.edu.cn/ubuntu/
1.4 中科大
https://mirrors.ustc.edu.cn/ubuntu/
1.5 163
http://mirrors.163.com/ubuntu/
二、源切换操作
备份原来的ubuntu官方源:
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
用sed -i
命令直接替换(例如华为源):
sudo sed -i "s@http://.*archive.ubuntu.com@http://repo.huaweicloud.com@g" /etc/apt/sources.list
sudo sed -i "s@http://.*security.ubuntu.com@http://repo.huaweicloud.com@g" /etc/apt/sources.list
要用其他源,替换后面部分域名即可!
更新源列表:
sudo apt-get update
以上是关于Ubuntu配置篇 | apt切换为国内源的主要内容,如果未能解决你的问题,请参考以下文章