Dear Members of the OSGeo mailing list, in last days, I run the build process as described here [1] several times to test our install script. Unfortunately the building always failed due to problem with unmouting of dev and proc-filesystem for chroot. After some small changes, I was able to fix this issue. Do someone else also experienced those problems?
For me it is not obvious why it is necessary to bind the whole /dev into the chroot - /dev/pts should do it. Secondly, it seems more safe to me, to execute the mount of /proc outside the chroot. After performing the following changes, building runs always fine in my environment. *build_chroot_debug.sh* -- sudo mount --bind /dev/ edit/dev ++ sudo mount -t proc -o bind /proc edit/proc ++ sudo mount -o bind /dev/pts edit/dev/pts ... -- sudo umount edit/dev ++ sudo umount edit/dev/pts ++ sudo umount edit/proc *inchroot_debug.sh* --mount -t proc none /proc --mount -t sysfs none /sys --mount -t devpts none /dev/pts ... -- umount /proc || umount -lf /proc -- umount /sys -- umount /dev/pts Any comments or ideas ? [1] http://wiki.osgeo.org/wiki/Live_GIS_Build#How_to_do_development_.2F_debugging_with_the_current_build_method -- With best regards, Patric Hafner -- geOps e.K. -------------------------------- Handelsregister A 702785, Amtsgericht Freiburg Kaiser-Joseph-Strasse 263 D-79098 Freiburg -------------------------------- fon +49 761 503 126 91 fax +49 761 503 126 94 -------------------------------- free service calls from D and CH 00800 436 436 436 -------------------------------- web www.geops.de rss www.geops.de/blog/feed follow www.twitter.com/geops_tweet -------------------------------- _______________________________________________ Live-demo mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/live-demo http://live.osgeo.org http://wiki.osgeo.org/wiki/Live_GIS_Disc
