Quoting Geordy Korte ([email protected]): > This basically tells me that pivot_root is umounting the mount I just made. > > Can anyone help me with this??? I have also tried putting the mount inside > the fstab for the container but same problem.
Have you entered the container to verify? I would have guessed that the unmounting is just a part of unmounting the *old* fs tree. You have /var/lib/lxc, under which is the container's rootfs, and the debug tells you that the original / is left under /var/lib/lxc/mnt. Meaning that after the pivot_root, you have '/' as the container's root (the old /var/lib/lxc), and '/mnt' containing the old '/'. Now lxc recursively unmounts /mnt. It's just a part of the pivot_root procedure. (see man 8 pivot_root) ------------------------------------------------------------------------------ Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes on your game by optimizing for Intel(R) Graphics Technology. Get started today with the Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs. http://p.sf.net/sfu/intelisp-dev2dev _______________________________________________ Lxc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/lxc-users
