Ubuntu 更换 apt 源为阿里云镜像源
# 一、为啥换源
ubuntu下一般使用apt-get或者apt下载,由于Ubuntu是国外技术人员开发的,所以apt和apt-get这两个指令对接的就是国外地址,没翻墙下载速度很慢。笔者猜一下:其实换源就是改一下apt和apt-get指令的配置文件。
# 二、换源步骤
1、先把原先的源备份一下,以防止新增的源出错
# 版本 24.x 以下
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
# 版本 24.x 以上
sudo cp /etc/apt/sources.list.d/ubuntu.sources /etc/apt/sources.list.d/ubuntu.sources.bak
1
2
3
4
2
3
4
2、打开sources.list文件
# 版本 24.x 以下
sudo vim /etc/apt/sources.list
# 版本 24.x 以上
sudo gedit /etc/apt/sources.list.d/ubuntu.sources
1
2
3
4
2
3
4
3、把文件内容清空,然后把下面的内容复制进去(以 24.04 LTS 版本为例)
deb https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse
# deb https://mirrors.aliyun.com/ubuntu/ noble-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble-proposed main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
4、保存退出,然后更新一下
# Ubuntu 16.04 以上
sudo apt-get update
# Ubuntu 16.04 以下
sudo apt update
1
2
3
4
2
3
4
4、保存退出
# 三、参考链接
Ubuntu 镜像其他版本:https://developer.aliyun.com/mirror/ubuntu?spm=a2c6h.13651102.0.0.3e221b114wfUEJ (opens new window)
# 四、其他
阿里云:https://developer.aliyun.com/mirror (opens new window)
中国科技大学源:https://mirrors.ustc.edu.cn/ubuntu/ (opens new window)
上次更新: 2024/05/29, 17:27:32
- 02
- Node与GLIBC_2.27不兼容解决方案08-19
- 03
- Git清空本地文件跟踪缓存08-13