Ubuntu配置清华镜像源
1.修改配置文件
Ubuntu配置清华镜像源的教程如下(配置方法的最新变动可以去清华镜像站查看:https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/):
对于Ubuntu 24.04及其以后的版本,Ubuntu 的软件源配置文件的路径为/etc/apt/sources.list.d/ubuntu.sources
。将该文件中的内容替换为以下内容即可使用清华镜像源。
# ------清华镜像源:start------
# Types: deb:这种类型的源提供的是二进制软件包,也就是已经编译好的软件包,可以直接安装使用。这种软件包格式是Debian及其衍生版本(如Ubuntu)常用的软件包格式。使用deb类型的源可以方便快捷地安装和更新软件。
Types: deb
URIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu
Suites: noble noble-updates noble-backports
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# Types: deb-src:与deb类型相对,deb-src类型的源提供的是源代码包。这种软件包包含了源程序编码、Debian控制文件(.dsc)以及“Debian化”该程序所做更改的记录文件diff.gz。源代码包通常用于开发者编译自己的软件,或者用于审计和修改软件的源代码。
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
# Types: deb-src
# URIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu
# Suites: noble noble-updates noble-backports
# Components: main restricted universe multiverse
# Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# 以下安全更新软件源包含了官方源与镜像站配置,如有需要可自行修改注释切换
# 因镜像站同步有延迟,可能会导致生产环境系统不能及时检查、安装上最新的安全更新,不建议替换 security 源。
Types: deb
URIs: http://security.ubuntu.com/ubuntu/
Suites: noble-security
Components: main restricted universe multiverse
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# Types: deb-src
# URIs: http://security.ubuntu.com/ubuntu/
# Suites: noble-security
# Components: main restricted universe multiverse
# Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# 预发布软件源,不建议启用
# Types: deb
# URIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu
# Suites: noble-proposed
# Components: main restricted universe multiverse
# Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# Types: deb-src
# URIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntu
# Suites: noble-proposed
# Components: main restricted universe multiverse
# Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# ------清华镜像源:end------
# ------官方默认源备份:start------
# Types: deb
# URIs: http://cn.archive.ubuntu.com/ubuntu/
# Suites: noble noble-updates noble-backports
# Components: main restricted universe multiverse
# Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# Types: deb
# URIs: http://security.ubuntu.com/ubuntu/
# Suites: noble-security
# Components: main restricted universe multiverse
# Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
# ------官方默认源备份:end------
2.更新本地包索引
执行以下命令更新本地包索引,以确保使用清华镜像源下载软件包。安装任意软件之前,也最好先执行此命令来更新本地包索引,这样才可以安装到软件包的最新版本。
sudo apt-get update
3.测试清华镜像源配置是否成功
安装任意软件,如果在下载过程中显示的是清华镜像源的链接,则表示配置成功。
标签:noble,ubuntu,Ubuntu,Linux,镜像,deb,archive,Types From: https://blog.csdn.net/txh1013/article/details/142176114