Precise 12.04
아래 의 chroot 이미지를 설정하려고 합니다 Lucid 10.04
. 프로세스는 괜찮은 것 같았지만, 그렇게 했을 때 schroot -c precise -u root
chroot 이미지의 /home 아래에는 아무 것도 표시되지 않습니다. 이는 /home이 마운트되지 않았음을 의미합니다.
내 마운트 기본값 콘텐츠:
cat /etc/schroot/mount-defaults
# mount.defaults: static file system information for chroots.
# Note that the mount point will be prefixed by the chroot path
# (CHROOT_PATH)
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
#procbususb /proc/bus/usb usbfs defaults 0 0
#/dev /dev none rw,bind 0 0
/dev/pts /dev/pts none rw,bind 0 0
/dev/shm /dev/shm none rw,bind 0 0
/home /home none rw,bind 0 0
/tmp /tmp none rw,bind 0 0
내 호스트/home은 별도의 파티션에 마운트됩니다. 내 chroot 이미지에 마운트할 /home 또는 외부 디렉터리를 어떻게 얻나요?
답변1
비결은 type=directory
아래에 이미지 정의를 넣는 것입니다 /etc/schroot/schroot.conf
. 자세한 내용은 을 참조하세요 man schroot.conf
.