- 备份当前源列表
- 编辑源列表
- 保存并退出编辑器。
按Ctrl + X
,按Y
保存,Enter
确认保存。 - 更新软件包列表
Ubuntu系统更换清华源
Ubuntu系统更换清华源
写在开头
使用Ubuntu时候,直接使用 apt
命令来 更新/升级/安装/卸载 软件包时候,要么访问非常缓慢,要么就是直接连接不上。
常见的国内镜像源还要 阿里源
腾讯源
网易源
以及各个大学站分享的镜像源。
我使用过 阿里和腾讯的镜像源,但是体验不佳,有些软件包缺失,使用体验不太好。清华源是用使用体验最棒的镜像源。
清华源除Ubuntu外,还包括大量其他镜像源,可以自行前往查看。 链接直达
我使用是Ubuntu22.04版本系统,故下面所有内容都是Ubuntu22.04系统更换镜像源,如果系统不同需要前往镜像站查看具体配置。
更换清华源
清华源除Ubuntu镜像源地址 链接直达
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo nano /etc/apt/sources.list
清空文件内容后,粘贴以下内容
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
# 以下安全更新软件源包含了官方源与镜像站配置,如有需要可自行修改注释切换
deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse
# deb-src http://security.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse
sudo apt update
复制链接
https://blog.manmandong.top/archives/666/