On Fri, 2003-10-24 at 16:18, Carlos Rodrigues wrote:
Hi!
I intend to mount a directory in another location with "mount --bind" and I wanted to know if there is a way to automate this by putting it somewhere like /etc/fstab. I can put it in /etc/init.d/rc.local but I would rather do this in a more "elegant" way.
"mount --bind" is the same as "mount -o bind", so a line like
/my/old/dir /my/new/dir none bind 0 0
should work.
Nils