ubuntu20.04更换阿里的软件源

Posted alfiy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu20.04更换阿里的软件源相关的知识,希望对你有一定的参考价值。

新安装的ubuntu20.04的软件源是使用的国外的源,因此在使用apt安装软件时速度并不怎么快,建议大家更换为国内的源,这样在使用apt安装软件时速度会有明显的提升的。

ubuntu20.04 apt的配置文件为/etc/apt/sources.list,在更换源之前最好是先备份一下,如果更换不成功还可以恢复回来。

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bac

我们先看一下sources.list文件是什么样子的。

vim /etc/apt/sources.list


将原文件中的源地址注释掉,然后换成阿里的源地址。

sudo sed -i -e s/deb http:/#deb http:/g /etc/apt/sources.list

将阿里的源地址添加到sources.list文件中。

执行下面的命令就可以了,注意要切换为root用户。

echo 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-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed 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 >> /etc/apt/sources.list

查看一下修改完成之后的sources.list文件。

sudo vim /etc/apt/sources.list


验证。

sudo apt update

如果出现下图则说明已经更换成功了。

以上是关于ubuntu20.04更换阿里的软件源的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu20.04 LTS 更换国内163源阿里源清华源中科大源

ubuntu 软件源阿里云镜像与清华镜像

Ubuntu20.04 为pip更换国内的下载源

系统篇: ubuntu 20.04 更换国内软件源

系统篇: ubuntu 20.04 更换国内软件源

系统篇: ubuntu 20.04 更换国内软件源