如何为 Debian hppa 创建正确的 apt/sources.list?

如何为 Debian hppa 创建正确的 apt/sources.list?

2020年之前我一直用这个,效果很好

http://debian-stable.parisc-linux.org/debian-hppa buster main contrib non-free

现在网站给出404。

我没有在任何地方找到任何稳定的 hppa debian 存储库,所以我想尝试不稳定。

我找到了这个网站

http://ftp.kr.debian.org/debian-ports/dists/unstable/

但如果我配置 apt/sources.list

deb http://ftp.kr.debian.org/debian-ports/debian-hppa unstable main contrib non-free
deb-src http://ftp.kr.debian.org/debian-ports/debian-hppa unstable main contrib non-free

给我这个错误

E: The repository 'http://ftp.kr.debian.org/debian-ports/debian-hppa unstable Release' does not have a Release file.

我尝试用 hppa 替换 debian-hppa,但给出了同样的错误。他们有 debian hppa .deb 软件包,例如此软件包链接返回 OK:http://ftp.ports.debian.org/debian-ports/pool-hppa/main/d/d52/d52_3.4.1-1.1_hppa.deb

答案1

您需要debian-hppa完全删除 URL 的部分:

deb http://ftp.kr.debian.org/debian-ports unstable main contrib non-free
deb-src http://ftp.kr.debian.org/debian-ports unstable main contrib non-free

然而你真的应该使用CDN

deb http://deb.debian.org/debian-ports unstable main contrib non-free
deb-src http://deb.debian.org/debian-ports unstable main contrib non-free

您可能还需要检索当前的存档密钥,如下所示存档说明中指出

wget -O - https://www.ports.debian.org/archive_2022.key | apt-key add -

相关内容