我有一个 linux 操作系统(如 ubuntu 或 centos)的 rootfs,并删除了 mount
其中的命令。
现在,有没有办法在容器内 使用nsenter
或或任何其他命令挂载 proc 文件系统?unshare
我使用这个简单的命令来创建一个容器:
# Create Container
unshare --fork --pid --mount-proc chroot rootfs /bin/bash
# Get pid of namespace
pgrep -P $(pgrep unshare)
现在我想在容器内挂载 proc 文件系统,但容器没有mount
命令。
我怎样才能做到这一点 ?