vote up 2 vote down star

is it possible to mount a local directory into another one. Using perfoce I want to do something equivalent to symlinking a directory, but in a way that fools it into thinking it's really just another directory in the project.

I would like to do something like:

mount /foo/bar /home/foo/bar

Is this possible, and if so what options do I need to give it.

flag

6 Answers

vote up 3 vote down check

bindfs seems like what you're after...

link|flag
vote up 1 vote down

--bind wont work

link|flag
vote up 0 vote down

You can only mount different filesystems under the directory tree. You may be able to achieve what you're looking to do by hard linking the directories. OS X allows hard linking directories and to perforce it would like like different directories

link|flag
vote up 0 vote down

To make a hard link from one directory to another, run:

$ ln /foo/bar /home/foo/bar

It is important to note that from the OS's perspective, both links are treated equally. You can delete /foo/bar and /home/foo/bar will remain a valid reference to the data on disk.

link|flag
Hardlinking directories is evil!!! (Unless you're very careful...) – Stobor Jul 4 at 4:54
2  
you can not hardlink directories in OSX via 'ln' – Steve918 Jul 4 at 5:20
Whoops. Shame on me for not actually running the command. Point taken. – David Jul 4 at 17:17
Time Machine actually uses hard links to directories, so it must somehow be possible. – micha2305 Jul 6 at 12:07
1  
It can be done, but you have to write code to do it... Some example code (as well as the conditions placed on directory hard links) is about halfway down on this page: osxbook.com/blog/2008/… (search for the word "experimentation") – Stobor Jul 7 at 3:04
vote up 0 vote down

mount --bind /foo/bar /foo/baz works on linux at least, so unless OSX doesn't allow this syntax (haven't got a mac to try on), or you need the extra features of bindfs, don't over-complicate ;)

link|flag
I don't own a mac, but checked google.com/search?q=osx+man+mount before proposing bindfs. :) – Stobor Jul 7 at 3:06
Sigh. My google-fu is weak it seems. Anyway, why did they leave that out? – carlpett Jul 7 at 6:57
1  
--bind is a Linux extension. Mac OS X: mount: illegal option -- - – mark4o Jul 7 at 17:25
vote up 0 vote down

The BSD (and thus Darwin/OSX) method of achieving this is nullfs. It's not in a standard build of OSX, but perhaps it's possible to build from source if you have the time to play around with it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.