Ubuntu 24.04 更换国内软件源(以阿里云为例)

方法一:一键脚本配置

bash 复制代码
#!/bin/bash

# 备份原有配置
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup.$(date +%Y%m%d%H%M%S)

# 写入阿里云源配置
sudo tee /etc/apt/sources.list << 'EOF'
deb https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse
deb https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse
EOF

# 更新缓存
sudo apt update
sudo apt upgrade -y

方法二:命令行配置

第1步:备份原有源配置
bash 复制代码
# 备份原有源列表
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
第2步:编辑软件源列表
bash 复制代码
# 使用vi编辑器打开源列表文件
sudo vi /etc/apt/sources.list
第3步:替换为阿里云源

将文件内容替换为以下内容:

bash 复制代码
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble-updates main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble-backports main restricted universe multiverse

deb https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.aliyun.com/ubuntu/ noble-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ noble-proposed main restricted universe multiverse
第4步:更新软件包列表
bash 复制代码
# 更新软件包列表
sudo apt update

# 升级已安装的软件包(可选)
sudo apt upgrade

其他国内镜像源选择

如果您想使用其他镜像源,只需将上述配置中的 mirrors.aliyun.com 替换为:

  • 腾讯云 : mirrors.cloud.tencent.com
  • 华为云 : repo.huaweicloud.com
  • 清华源 : mirrors.tuna.tsinghua.edu.cn
  • 中科大源 : mirrors.ustc.edu.cn

验证配置是否成功

bash 复制代码
# 检查源是否正常
sudo apt update

# 查看当前使用的源
sudo apt policy

# 测试安装软件包
sudo apt install htop

注意事项

  1. 版本对应 : Ubuntu 24.04 的代号是 "Noble Numbat",在源配置中对应 noble

  2. 网络连接: 确保服务器可以正常访问互联网

  3. 安全性 : 建议使用https协议的镜像源,如 https://mirrors.aliyun.com

  4. 恢复原配置: 如果出现问题,可以恢复备份:

    bash 复制代码
    sudo cp /etc/apt/sources.list.backup /etc/apt/sources.list
    sudo apt update

国内常用镜像源地址

提供商 主地址 备注
阿里云 https://mirrors.aliyun.com/ubuntu/ 速度快,覆盖广
腾讯云 https://mirrors.cloud.tencent.com/ubuntu/ 腾讯云用户推荐
华为云 https://repo.huaweicloud.com/ubuntu/ 华为云用户推荐
清华源 https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ 教育网推荐

完成以上步骤后,您的Ubuntu 24.04系统就会使用国内的镜像源,软件下载速度将得到显著提升。

相关推荐
INGNIGHT5 小时前
270 · 电话号码的字母组合II(Trie)
linux·算法
zly35005 小时前
VMware Converter Standalone 物理机转化为虚拟机后源1硬盘变成了2个硬盘(2个硬盘文件)虚拟机无法启动。
linux·运维·服务器
GeW7 小时前
从内核到数据:Linux与工业数据库如何支撑高端制造
linux
小小的木头人8 小时前
Linux systemd Service 与 Timer 定时任务原理及实战
linux
熊明才9 小时前
WSL2 网络突然瘫痪(Network is unreachable / 没有 eth0)最短修复指南(2026年9月20日亲测可用)
linux·windows·wsl2
Tairitsu_H9 小时前
[Linux系统] 自动化构建make / Makefile | 进度条
linux·操作系统·makefile·make
行者全栈架构师9 小时前
大模型运维准确率不到 50%?我们用 DeepSeek V4 测了 5 大场景,结果出人意料
linux·人工智能·开源
zzzyyy53810 小时前
TCP 协议学习笔记:从报文格式到异常处理
linux·网络
傲世仙尊10 小时前
ELF与动态库进阶-链接真相与GOT表
linux
M78佐菲11 小时前
ARM学习笔记(五)
linux·arm开发·笔记·嵌入式硬件·学习