I am trying to mount a rw folder over a ro base on a dir:
- read-only nullfs mount
- a rw union fs mount above
Here's the result:
And now I am stuck:
- trying to
-
-
What's going on? How can I fix this?
- read-only nullfs mount
mount_nullfs -o ro,noatime ro mounts/root- a rw union fs mount above
mount_unionfs -o noatime rw mounts/rootHere's the result:
Code:
/root/uniontest/roroot on /root/uniontest/mounts/root (nullfs, local, noatime, nfsv4acls)
<above>:/root/uniontest/rwroot on /root/uniontest/mounts/root (unionfs, local, noatime, nfsv4acls)
And now I am stuck:
- trying to
cd, ls or autocomplete a path in mounts/root or ro or rw hangs-
umount hangs-
shutdown -r now is not workingWhat's going on? How can I fix this?