Ubuntu系统更换apt源为阿里云源
# 简介
Ubuntu,是一款基于 Debian Linux 的以桌面应用为主的操作系统,内容涵盖文字处理、电子邮件、软件开发工具和 Web 服务等,可供用户免费下载、使用和分享。
apt-get,是一条linux命令,适用于 deb 包管理式的操作系统,主要用于自动从互联网的软件仓库中搜索、安装、升级、卸载软件或操作系统。
# 1.确认系统版本代号
执行命令 lsb_release -c
,确认我们当前 Ubuntu 系统对应的版本代码,用于确认使用所对应的阿里云源。
root@ubuntu:/# lsb_release -c
Codename: bionic
1
2
2
# 2.更改软件源配置文件
使用你熟悉的编辑器,编辑配置文件 /etc/apt/sources.list
。将以下内容复制保存到该文件。
如果你的是系统是 Ubuntu 其它版本,可以参考阿里云源官方文档。【文档地址 (opens new window)】
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-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
# 3.测试是否替换成功
执行命令 apt-get update
,更新获取阿里软件源提供的软件列表。
还可以选择是否执行 apt-get upgrade
更新软件包。
root@ubuntu:/etc/apt# apt-get update
忽略:1 http://dl.google.com/linux/chrome/deb stable InRelease
命中:2 http://mirrors.aliyun.com/ubuntu bionic InRelease
获取:3 http://mirrors.aliyun.com/ubuntu bionic-security InRelease [88.7 kB]
命中:4 http://dl.google.com/linux/chrome/deb stable Release
获取:5 http://mirrors.aliyun.com/ubuntu bionic-updates InRelease [88.7 kB]
获取:7 http://mirrors.aliyun.com/ubuntu bionic-proposed InRelease [242 kB]
获取:8 http://mirrors.aliyun.com/ubuntu bionic-backports InRelease [74.6 kB]
......
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
上次更新: 2023/09/19, 09:25:06