Debian10 apt update问题 更新软件源 2025-8-11
不知道现在还有多少人在用 Debian10 是不是觉得自己的VPS内存太小, 不敢用 Debian 11 / 12 我今天突发奇想, 拿一个 Racknerd 的 小内存VPS 重装成 Debian10 看今时今日(2025-8-11)用 Debian10 搭梯有没有什么问题. 一开始 apt update 报错, 我想到了以前的经验 apt update --allow-releaseinfo-change apt dist-upgrade 但是发现这样操作之后 还是 apt update 不成功. 再继续搜索了一些资料 需要编辑软件源文件 /etc/apt/sources.list 原来的文件内容全部删掉, 修改为 deb https://archive.debian.org/debian buster main contrib non-free deb-src https://archive.debian.org/debian buster main contrib non-free deb https://archive.debian.org/debian-security buster/updates main contrib non-free deb-src https://archive.debian.org/debian-security buster/updates main contrib non-free deb https://archive.debian.org/debian buster-updates main contrib non-free deb-src https://archive.debian.org/debian buster-updates main contrib non-free 然后安装证书 apt install debian-archive-keyring 就可以正常安装其它软件了. 我试了以下这些都没问题 caddy v2ray xray hysteria2 aria2 go编译 (naive caddy) python3 (telegram bot) node.js (酒馆SillyTavern) 用到我自己的一键脚本项目 https://github.com/crazypeace/v2ray_wss ht...