服务公告
Linux 更换国内源(精简篇)
发布时间:2024-11-25 22:13
1.将当前的源备份一下,以防以后可以用到
sudo cp /etc/apt/sources.list /etc/apt/sources_init.list
2.使用该命令,查看一下ubuntu的版本
lsb_release -a
3.更换源
通过以下三个网址之一查看对应的ubuntu的对应版本的源
清华源:ubuntu | 镜像站使用帮助 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
阿里源:ubuntu镜像ubuntu下载地址ubuntu安装教程-阿里巴巴开源镜像站 (aliyun.com)
中科源:Ubuntu 源使用帮助 — USTC Mirror Help 文档
使用gedit命令打开文档,并将选择好的源添加进去,然后点击保存关闭。
sudo gedit /etc/apt/sources.list
以清华源ubuntu22.04LTS(jammy)版本为例
# 默认注释了源码镜像以提高 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
# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
# # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-proposed main restricted universe multiverse
4.更新
输入以下指令更新系统源
sudo apt update
sudo apt upgrade
至此,换源完毕
上一篇: 如何更新CentOS7的软件源
下一篇: linux查看端口占用