进入chroot,发出命令,留在chroot

时间:2017-11-25 02:27:43

标签: linux terminal chroot

n00b问题。

我必须发出一个终端命令,它将进入chroot,发出一个命令(例如" ls"),然后保留在chroot中,这样用户就可以输入更多的命令。

现在这是我得到的最好的:

cat << EOF | sudo chroot /path/to/chroot
ls
EOF

不幸的是,一旦完成它就会退出chroot。

我怎样才能留在chroot?

1 个答案:

答案 0 :(得分:2)

你可以这样做:

sudo chroot /path/to/chroot sh -c "ls; bash"

这将运行ls,然后启动交互式bash shell。