osx 'mount' local directory - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T19:59:42Zhttp://stackoverflow.com/feeds/question/1081485http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081485/osx-mount-local-directory2osx 'mount' local directorySteve9182009-07-04T04:26:20Z2009-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#10815010Answer by ennuikiller for osx 'mount' local directoryennuikiller2009-07-04T04:35:17Z2009-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#10815090Answer by David for osx 'mount' local directoryDavid2009-07-04T04:43:32Z2009-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#10816393Answer by Stobor for osx 'mount' local directoryStobor2009-07-04T06:15:40Z2009-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#10865680Answer by carlpett for osx 'mount' local directorycarlpett2009-07-06T11:44:16Z2009-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#10874091Answer by Viktor for osx 'mount' local directoryViktor2009-07-06T14:52:00Z2009-07-06T14:52:00Z<p>--bind wont work</p>
http://stackoverflow.com/questions/1081485/osx-mount-local-directory/1729654#17296540Answer by hannibal for osx 'mount' local directoryhannibal2009-11-13T14:44:29Z2009-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&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>