我刚刚使用以下命令创建了一个新的 LXC:
lxc-create -n ${NAME} -t download
我选择debian
和stretch
作为amd64
特征。我在非特权模式下使用带有 UID/GID 映射的 LXC ( /etc/sub?id
)。
问题是我无法阻止 LXC。在容器内,我收到以下消息(来自 LXC 内):
# shutdown -h now
Failed to connect to bus: No such file or directory
Failed to connect to bus: No such file or directory
主机系统也有同样的事情:
# lxc-attach -n tmp-deb9 -- shutdown now
Failed to connect to bus: No such file or directory
Failed to talk to init daemon.
或者甚至像这样(来自 LXC 内部):
# init 0
Couldn't find an alternative telinit implementation to spawn.
如果我运行以下命令,它将永远挂起:
lxc-stop -n ${NAME}
我尝试安装dbus
但是问题还没有解决。
init
即使从主机系统,我也无法停止 LXC 或终止该进程。
我怎样才能阻止 LXC?