Ubuntu系统查看镜像源并使用阿里云的镜像源

本文介绍了如何在Ubuntu系统中查看并修改镜像源,以使用阿里云的镜像源来提高软件包下载速度。步骤包括查看当前镜像源、根据系统版本替换为阿里云的镜像源URL,并进行更新测试。适用于Ubuntu 14.04至20.04等多个版本。

Ubuntu系统查看镜像源并使用阿里云的镜像源

前言

Ubuntu 使用 apt 管理系统级的包/软件非常方便,但由于这些托管包/软件的中央仓库基本都位于美国,所以对于国内用户来说因为洲际网络相对较差,经常会出现下载速度慢或下载不成功的情况,因此,常见的做法就是设置国内的镜像源仓库。这个原理就是某几个镜像站定时从美国的中央仓库对同步到国内的服务器上,这样国内用户就访问的是国内的服务器了,效率也就提升了,而且也减少了洲际网络的使用。

常见的镜像源:阿里云源、清华源、中科大源、豆瓣源、网易源等等(此博客使用的是阿里源)。

查看系统镜像源

打开命令行,输入:

sudo gedit /etc/apt/sources.list

修改系统镜像源

根据自身系统版本,复制相对应的内容,粘贴到打开的文本中。(默认有源码镜像(deb-src),也可自行注释)

Ubuntu 14.04 配置如下:

deb https://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse

## Not recommended
# deb https://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse

ubuntu 16.04 配置如下

deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse

deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse

deb http://mirrors.aliyun.com/ubuntu/ xenial universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial universe

deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates universe

deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse

deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security universe

ubuntu 18.04 配置如下

deb https://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

# deb https://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

Ubuntu 20.04 配置如下

deb https://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse

# deb https://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse

测试与更新

更新软件包列表:

sudo apt-get update

若有如下类似的输出(不同版本的Ubuntu输出略有差别),则说明已成功更换阿里云的镜像源:
请添加图片描述
更新软件包(可选):

sudo apt-get upgrade
Ubuntu系统中,将默认的镜像源更换为阿里云提供的镜像源可以显著提升软件包的下载速度。以下是具体的操作步骤: 1. **备份原有的镜像源配置文件** 在进行任何更改之前,建议先备份原有的`sources.list`文件,以防止出现问题时无法恢复。可以通过以下命令完成备份: ```bash sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak ``` 2. **编辑镜像源配置文件** 使用文本编辑器(如`nano`或`vim`)打开`sources.list`文件: ```bash sudo nano /etc/apt/sources.list ``` 3. **替换为阿里云镜像源** 将文件中的所有内容替换为以下阿里云提供的镜像源配置(适用于Ubuntu 20.04 LTS): ```plaintext deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse ``` 如果使用的是其他版本的Ubuntu,例如18.04 LTS(Bionic Beaver),可以将`focal`替换为`bionic`。 4. **保存退出编辑器** 在`nano`编辑器中,按下`Ctrl + O`保存文件,然后按`Ctrl + X`退出编辑器。 5. **更新软件包列表** 更换镜像源后,执行以下命令更新软件包列表: ```bash sudo apt update ``` 6. **升级已安装的软件包** 如果希望将系统中已安装的软件包升级到最新版本,可以运行以下命令: ```bash sudo apt upgrade ``` 通过以上步骤,Ubuntu系统的默认镜像源即可成功更换为阿里云提供的镜像源,从而提高软件包的下载速度和系统的稳定性。 ### 注意事项 - 确保在编辑`sources.list`文件时使用正确的Ubuntu版本代号(如`focal`、`bionic`等),以免导致软件包无法找到的问题。 - 如果遇到网络连接问题,可以尝试更换其他镜像源或恢复原始的镜像源配置。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI Player

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值