我们需要根据我们自己Ubuntu系统版本来配置对应的apt源
一、常见LTS版本代号
- Ubuntu 20.04代号为:focal
- Ubuntu 19.04代号为:disco
- Ubuntu 18.04代号为:bionic
- Ubuntu 17.04代号为:zesty
- Ubuntu 16.04代号为:xenial
二、查看linuxOS发行版本信息
查看命令:
lsb_release -a
ubuntu 20.04 ==> 发行版本代号为 focal
$ lsb_release -a
Distributor ID: Ubuntu
Description: Ubuntu 20.04.1 LTS
Release: 20.04
Codename: focal
ubuntu 18.04 ==> 发行版本代号为 bionic
$ lsb_release -a
Distributor ID: Ubuntu
Description: Ubuntu 18.04.6 LTS
Release: 18.04
Codename: bionic
三、修改apt源
1. 修改sources.list文件
sudo gedit /etc/apt/sources.list
ubuntu 20.04
# 阿里源
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
ubuntu 18.04
# 阿里源
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb 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 main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
2.更新
$ sudo apt-get update # 更新软件列表
$ sudo apt-get upgrade # 更新软件包
本文介绍了如何根据Ubuntu的不同LTS版本(如20.04focal,18.04bionic等)配置相应的apt源,包括修改sources.list文件,并提供更新系统的命令。

1万+

被折叠的 条评论
为什么被折叠?



