镜像下载失败并出现错误:使用 sudo 运行 debootstrap 时无法获取发布文件

镜像下载失败并出现错误:使用 sudo 运行 debootstrap 时无法获取发布文件

我运行命令

$ sudo debootstrap --variant=buildd --arch i386 lucid /var/chroot/ https://mirror.internet.asn.au/pub/ubuntu/archive/

错误是:

I: Retrieving InRelease 
I: Retrieving Release 
E: Failed getting release file https://mirror.internet.asn.au/pub/ubuntu/archive/dists/lucid/Release

我也尝试过其他镜子。我也读过类似问题,但我不明白答案?

答案1

如果你看一下分布指数在你的镜子上,你会看到它lucid不可用。事实上,它早已从主镜中消失了。你需要使用档案馆:

sudo debootstrap --variant=buildd --arch i386 lucid /var/chroot/ http://old-releases.ubuntu.com/ubuntu/

(我想你有理由想要使用 13 年前的 Ubuntu 版本设置 chroot!)

相关内容