Ubantu设置国内镜像(阿里云、华为云)

1. 确定系统版本

国内有很多 Ubuntu 的镜像源,包括阿里的、网易的,还有很多教育网的源,比如:清华源、中科大源等。

不同的 ubantu 版本对应的镜像源有所不同,所以需要先查看系统的版本号:

bash 复制代码
lsb_release -a

// output
root@DESKTOP-Q58L5PB:/etc/apt# lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 20.04.6 LTS
Release:        20.04
Codename:       focal

可以看到系统的版本号是 20.04.6 LTS,注意这个开发代号 Codename = focal,Ubuntu每一个版本都有一个代号,这个一定要跟国内源对应,否则会出问题。


2. 镜像

2.1 阿里云镜像

通过以下地址可以看到阿里云 Ubuntu 各个版本的镜像地址,从中选择自己的系统版本就好,一定要选择 Codename 对应的版本。镜像地址: ubuntu镜像_ubuntu下载地址_ubuntu安装教程-阿里巴巴开源镜像站

以下是20.04.6 LTS 对应 forcal 的镜像源信息。

bash 复制代码
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
  1. 备份官方镜像
bash 复制代码
sudo cp /etc/apt/sources.list /etc/apt/sources.list.back
  1. 编辑 sources.list
bash 复制代码
vim /etc/apt/sources.list
  1. 更新镜像源
bash 复制代码
sudo apt update
sudo apt upgrade

2.2 其他

ubuntu | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror

ubuntu | 镜像站使用帮助 | 华为软件镜像站


Reference

  1. https://blog.csdn.net/MacWx/article/details/137689898
  2. https://blog.csdn.net/shenzhenyancheng/article/details/126786768
相关推荐
吃旺旺雪饼的小男孩12 分钟前
Ubuntu 22.04 安装和运行 EDK2 超详细教程
linux·运维·ubuntu
IT小馋猫13 分钟前
Linux 企业项目服务器组建(附脚本)
linux·服务器·网络
阿政一号18 分钟前
Linux进程间通信:【目的】【管道】【匿名管道】【命名管道】【System V 共享内存】
linux·运维·服务器·进程间通信
又过一个秋32 分钟前
【sylar-webserver】7 定时器模块
linux·c++
啊哦1111 小时前
配置防火墙和SELinux(1)
linux·服务器·网络
唐青枫1 小时前
Linux 换行符的使用详解
linux
A charmer1 小时前
【Linux】文件系统知识梳理:从磁盘硬件到文件管理
linux·运维·服务器
Cynthia的梦2 小时前
Linux学习-Linux进程间通信(IPC)聊天程序实践指南
linux·运维·学习
卡戎-caryon2 小时前
【Linux网络与网络编程】03.UDP Socket编程
linux·服务器·网络·笔记·单例模式·udp·网络通信
張萠飛2 小时前
Linux的TCP连接数到达2万,其中tcp_tw、tcp_alloc、tcp_inuse都很高,可能出现什么问题
linux·网络·tcp/ip