文章目录
终端配置清华源配置内容如何搜寻Ubuntu的清华源配置内容
终端配置
使用vim进行配置文件修改
配置文件路径 /etc/apt/sources.list.d/ubuntu.sources
vim的具体使用方法,请参照菜鸟教程
https://www.runoob.com/linux/linux-vim.html
方式一:
#进入配置文件夹cd /etc/apt/sources.list.d/# 备份原有配置文件cp ubuntu.sources ubuntu.sources.bak# 修改配置文件vi ubuntu.sources
方式二:
# 备份原有配置文件cp /etc/apt/sources.list.d/ubuntu.sources /etc/apt/sources.list.d/ubuntu.sources.bak# 修改配置文件vi /etc/apt/sources.list.d/ubuntu.sources
清空 ubuntu.sources 文件内容
使用vim 打开文件后,键入D + Shift +G进行删除
实在不会删除的,打开文件后,键入I,使用delete 或 Backspace 进行删除
将以下的清华源配置内容粘贴(右键终端,选择粘贴)至此文件并保存文件内容
粘贴 右键终端,选择粘贴
vim保存吗,按Esc,后接着按Shift + :,后进入命令行模式,输入wq后回车保存关闭文件。
会由变为
更新源
apt updateapt upgrade
清华源配置内容
Types: debURIs: https://mirrors.tuna.tsinghua.edu.cn/ubuntuSuites: noble noble-updates noble-backportsComponents: main restricted universe multiverseSigned-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg# 默认注释了源码镜像以提高 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# 以下安全更新软件源包含了官方源与镜像站配置,如有需要可自行修改注释切换Types: debURIs: http://security.ubuntu.com/ubuntu/Suites: noble-securityComponents: main restricted universe multiverseSigned-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
如何搜寻Ubuntu的清华源配置内容
https://mirrors.tuna.tsinghua.edu.cn/
在搜索框直接搜索Ubuntu
点击列表中 Ubuntu 右侧的问号
从 Ubuntu 24.04 开始,Ubuntu 的软件源配置文件变更为 DEB822 格式故选择第二种方式进行配置,直接复制第二种方式的源代码。