vote up 1 vote down star

How do you create a hardlink (as opposed to a symlink or a Mac OS alias) in OS X that points to a directory? I already know the command "ln target destination" but that only works when the target is a file. I know that Mac OS, unlike other Unix environments, does allow hardlinking to folders (this is used for Time Machine, for example) but I don't know how to do it myself.

flag

1  
Sweet...hlink now lives in /usr/local/bin :) – Mike F Sep 18 '08 at 20:41
Thanks Mike F, that was a handy tip. – Nic Waller Oct 28 at 2:49

5 Answers

vote up 0 vote down

My case was that I found out that from a windows virtual machine, I cannot follow symlinks. (i wanted to test some HTML pages in Internet Explorer). And my directory structure had symlinks for CSS and images folders.

My workaround to solve the problem was a different approach than the other answers implied. I used rsync to create a copy of the folder. Rsync can resolve the symlinks and copy the linked files in stead.

This solved my problem without using hard links to directories. And it's actually an easy solution if you're just working on a small set of files.

rsync -av --copy-dirlinks --delete ../htmlguide ~/src/
link|flag
vote up 4 vote down check

You can't do it directly in BASH then. However... I found an article here that discusses how to do it indirectly: http://www.mactech.com/articles/mactech/Vol.23/23.11/ExploringLeopardwithDTrace/index.html by compiling a simple little program:

#include <unistd.h>
#include <stdio.h>
int
main(int argc, char *argv[])
{
   if (argc != 3)
      return 1;
   int ret = link(argv[1], argv[2]);
   if (ret != 0)
      perror("link");
   return ret;
}

$ gcc -o hlink hlink.c -Wall
link|flag
vote up 1 vote down

The trouble with hard-linking directories is the very real danger of recursing through a directory structure, and never finding the end of it. Soft links to directories are significantly safer. My university professors spent quite a while explaining why infinite loops were bad, so I avoid hard links.

link|flag
vote up 6 vote down

Yes it's supported by the kernel and the filesystem, but since it's not intended for general usage it's not exposed to the shell.

You could probably work out which APIs Time Machine uses and wrap them in a commandline tool, but it'd be better to take the hint and steer well-clear.

link|flag
the man page for link(2) says otherwise... – Alnitak May 9 at 13:21
vote up 3 vote down

The short answer is you can't. :) (except possibly as root, when it would be more accurate to say you shouldn't.)

Unixes only allow a set number of links to directories - ".." from within all its children and "." from within itself. Anything else is potentially a recipe for a very confused directory tree. This is/was apparently a design decision by Ken Thompson.

(Having said that, apparently Apple's Time Machine does do this :) )

link|flag

Your Answer

Get an OpenID
or

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