Displaying 1 result from an estimated 1 matches for "ttlink".
Did you mean:
tlink
2013 Jun 05
1
Symbolic links do NOT work if the source file is present BOTH on client & server !!!
...acl 0 1
2. Debian 6 Client mounts the Samba myshare with:
cc at Client:/# mount.cifs //Server/share/ /mnt/testshare/ -o rw,guest,uid=cc,gid=cc
3. Create a symbolic link onto the share, from a file (example /tmp/tt)
everything works fine:
cc at Client:/# ln -s /tmp/tt /mnt/testshare/ttlink
cc at Client:/# cat /mnt/testshare/ttlink
I am on Client !
4. Now, if you create a file with the SAME name /tmp/tt on the Server:
cc at Server:/# echo ' I am on Server !' > /tmp/tt
5. Then, you will lose the access to your link, from the Client side !!!!!...