symbolic links between servers

Hi Guys...

I want to create a link using ln -s for a directory that does not exist on the box.

How do I do that?

I had some files from Box A directory /d1/u01 and I copied the files across to another Box lets say Box B on directory /d2/u02.

Now I want a link so that this path /d1/u01 can point to /d2/u02.

How do I do that?

the 2 boxes must be able to communicate to one another. As long it can see the other partition eg like using NFS, you can link it

Assuming d2 is shared by boxb, you should be able to do something like that on Box A:

ln -s /net/boxb/d2/u02 /d1/u01