osx 'mount' local directory - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T19:59:42Z http://stackoverflow.com/feeds/question/1081485 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081485/osx-mount-local-directory 2 osx 'mount' local directory Steve918 2009-07-04T04:26:20Z 2009-11-13T14:44:29Z <p>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.</p> <p>I would like to do something like:</p> <blockquote> <p>mount /foo/bar /home/foo/bar</p> </blockquote> <p>Is this possible, and if so what options do I need to give it.</p> http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081501#1081501 0 Answer by ennuikiller for osx 'mount' local directory ennuikiller 2009-07-04T04:35:17Z 2009-07-04T04:35:17Z <p>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</p> http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081509#1081509 0 Answer by David for osx 'mount' local directory David 2009-07-04T04:43:32Z 2009-07-04T04:43:32Z <p>To make a hard link from one directory to another, run:</p> <pre><code>$ ln /foo/bar /home/foo/bar </code></pre> <p>It is important to note that from the OS's perspective, both links are treated equally. You can delete <code>/foo/bar</code> and <code>/home/foo/bar</code> will remain a valid reference to the data on disk.</p> http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1081639#1081639 3 Answer by Stobor for osx 'mount' local directory Stobor 2009-07-04T06:15:40Z 2009-07-04T06:15:40Z <p><a href="http://code.google.com/p/bindfs/" rel="nofollow">bindfs</a> seems like what you're after...</p> http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1086568#1086568 0 Answer by carlpett for osx 'mount' local directory carlpett 2009-07-06T11:44:16Z 2009-07-06T11:44:16Z <p><code>mount --bind /foo/bar /foo/baz</code> 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 ;)</p> http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1087409#1087409 1 Answer by Viktor for osx 'mount' local directory Viktor 2009-07-06T14:52:00Z 2009-07-06T14:52:00Z <p>--bind wont work</p> http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1729654#1729654 0 Answer by hannibal for osx 'mount' local directory hannibal 2009-11-13T14:44:29Z 2009-11-13T14:44:29Z <p>The BSD (and thus Darwin/OSX) method of achieving this is <a href="http://www.freebsd.org/cgi/man.cgi?query=nullfs&amp;manpath=FreeBSD+7.2-RELEASE" rel="nofollow">nullfs</a>. 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.</p>