更改Ubuntu系统为国内阿里镜像源

it2023-04-13  72

Ubuntu系统中,经常会使用apt-get等命令安装软件,但是由于系统默认的镜像源是国外的,所以软件的下载和更新操作非常的缓慢,因此把软件镜像源修改为国内的话,可以大大提高下载更新速度,这里将会把软件镜像源改为阿里的,操作步骤如下:

首先进入***/etc/apt***目录下, 可以看到sources.list文件,我们先备份一下

cp sources.list sources.list_bak

然后编辑该文件,把文件内容清空,然后将下面的阿里源复制到文件中,并保存。 ubuntu 18.04(bionic) 配置如下:

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

其他版本Ubuntu阿里镜像源链接

接着使用命令

sudo apt-get update

更新系统软件列表,如下图所示。完成!

最新回复(0)