> Is there a way of mounting a 2 samba drives say pc1/c$ and pc2/c$
> without clobbering the c$ namespace?
>
> I'd like to mount them something similar to:
>
> /pc1/c$
> /pc2/c$
> or:
> /smb/pc1/c$
> /smb/pc2/c$
>
> Can I get there from here?
>
> -Bryan
If anyone is interested I created a directories:
/Users/[myaccount]/smb/pc1/c$
/Users/[myaccount]/smb/pc2/c$
and a soft link:
ln -s /Users/[myaccount]/smb /smb
Then made my NetInfo look like:
name pc1/c$
dir /Users/[myaccount]/smb/pc1/c$
opts url==smb://pc1/c$
vfstype url
and
name pc2/c$
dir /Users/[myaccount]/smb/pc2/c$
opts url==smb://pc2/c$
vfstype url
I'm sure there are better ways;)
-Bryan