On Sat, Mar 25, 2006 at 11:25:52AM +0100, Werner Schulte wrote: > "mount -t unionfs -o dirs=/data/xxx=ro:/data/xxy=rw unionfs /data/unionfs"
The left most branch has to be writable. This should work: mount -t unionfs -o dirs=/data/xxy=rw:/data/xxx=ro unionfs /data/unionfs > Why is the parameter "unionfs" needed before the parameter mount point ? In this case, since we don't have a real device, you can call it anything (instead of "unionfs".) Some people like to use "none", but then things can get a little confusing when umount refuses to unmount with "none busy." Jeff. _______________________________________________ unionfs mailing list [email protected] http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs
