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
コマンドがありません。
どうすればいいですか?