debain系统更新软件源

国内用户在使用Debian系统时,使用官方的源进行更新的时候速度很慢,可通过更换国内镜像源(阿里云、清华大学、中科大),提升下载速度。

备份原始源文件

cpp 复制代码
cd /etc/apt
cp sources.list sources.list.bak

阿里云镜像源

cpp 复制代码
deb https://mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware contrib
deb-src https://mirrors.aliyun.com/debian/ bookworm main non-free non-free-firmware contrib
deb https://mirrors.aliyun.com/debian-security/ bookworm-security main
deb-src https://mirrors.aliyun.com/debian-security/ bookworm-security main
deb https://mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware contrib
deb-src https://mirrors.aliyun.com/debian/ bookworm-updates main non-free non-free-firmware contrib
deb https://mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware contrib
deb-src https://mirrors.aliyun.com/debian/ bookworm-backports main non-free non-free-firmware contrib

清华大学镜像源

cpp 复制代码
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-updates main contrib non-free non-free-firmware
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware
deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bookworm-backports main contrib non-free non-free-firmware

中科大镜像源

cpp 复制代码
deb https://mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb-src https://mirrors.ustc.edu.cn/debian/ bookworm main contrib non-free non-free-firmware
deb https://mirrors.ustc.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware
deb-src https://mirrors.ustc.edu.cn/debian-security bookworm-security main contrib non-free non-free-firmware

保存文件后,执行以下命令,更新软件包

cpp 复制代码
sudo apt update && sudo apt upgrade -y

注意版本匹配的问题

将配置中的 bookworm 替换为实际Debian版本代号(如Debian 11为 bullseye),可通过以下命令查询

cpp 复制代码
lsb_release -a

使用sudo apt update命令,进行系统软件更新的时候,若是遇到更新失败的问题,可检查一下nameserver的配置项。

在linux系统中,nameserver 是一个配置项,用于指定DNS服务器的IP 地址。nameserver 行告诉系统应该使用哪些 DNS 服务器来解析域名。

编辑/etc/resolv.conf的文件,以本机的系统为例,内网的ip是192.168.0.102,resolv.conf的内容如下:

cpp 复制代码
nameserver 192.168.0.1
相关推荐
小赖同学啊12 分钟前
智能连接器集群化高可用生产方案
linux·运维·人工智能
Cinema KI20 分钟前
Linux第一个系统程序-进度条
linux·服务器
Moshow郑锴1 小时前
Ubuntu 26.04 更换阿里云源镜像
linux·运维·ubuntu
Jason_chen1 小时前
Linux 6.2 串口机制深度解析:AI驱动的自适应通信与零信任串口安全架构
linux
ShineWinsu2 小时前
对于Linux:线程概念与分页存储管理的解析
linux·运维·服务器·面试·线程·进程·虚拟空间地址
用户3946235365243 小时前
Uboot - DM框架
linux
鹤落晴春4 小时前
RH124问答5:管理本地用户和组
linux·运维·服务器
其实防守也摸鱼4 小时前
软件安全与漏洞--Windows底层原理与软件逆向工程基础
linux·网络·数据库·算法·安全·安全架构·软件安全与漏洞
云栖梦泽4 小时前
Linux内核与驱动:pinctl子系统和GPIO子系统
linux·单片机·嵌入式硬件
无足鸟ICT5 小时前
【RHCA+】查找与替换
linux