我正在努力学习如何在Ubuntu上创建一个非特权lxc容器的指南。按照指示,我应该跑:
debootstrap --include=lxc eoan rootfs但是,当我运行它时,我得到了以下输出:
I: Retrieving InRelease
I: Checking Release signature
I: Valid Release signature (key id 790BC7277767219C42C86F933B4FE6ACC0B21F32)
I: Retrieving Packages
I: Validating Packages
I: Resolving dependencies of required packages...
I: Resolving dependencies of base packages...
I: Checking component main on http://archive.ubuntu.com/ubuntu...
E: Couldn't find these debs: lxc我检查了一下,看起来"lxc“包在镜像中是可用的。不知道我在这里做错了什么,也不知道debootstrap是如何找到包的。
发布于 2019-12-31 19:59:27
问题是,我未能启用其他消息来源:
debootstrap --components=main,restricted,universe --include=lxc eoan rootfshttps://unix.stackexchange.com/questions/558837
复制相似问题