chroot 问题

chroot 问题

我想知道是否有人可以解释我尝试使用 debootstrap 时发生的错误。

sudo debootstrap --arch i386 wheezy /srv/chroot/wheezy http://http.debian.net/debian
mknod: `/srv/chroot/wheezy/test-dev-null': Operation not permitted
E: Cannot install into target '/srv/chroot/wheezy' mounted with noexec or nodev

答案1

错误是不言而喻的:挂载在(或包含)的文件系统/srv/chroot/wheezy具有noexecnodev挂载标志。请尝试:

mount -o remount,rw,exec,dev /srv/chroot/wheezy

答案2

当您挂载文件系统或分区时,需要包含以下参数:

-o exec,dev

相关内容