Hello,
Is it possible to create symlinks on a cifs share? Specifically, a file on the cifs share, symlinked to the cifs share. Like so:
Code:
ln -s /mnt/cifs-1/ubuntu-7.04.iso /mnt/cifs-1/ubuntu-latest.iso
If it is possible, are there any special things I should be doing? I'm basically just mounting the volume via cifs in fstab and trying to create a mirror. Here's my line in fstab:
Code:
//fileserver.example.com/Mirror /var/mirror cifs username=windows_admin_account,password=password,uid=0,gid=0,dir_mode=0775,file_mode=0644,rw 0 0
fileserver.example.com and the username/password are changed for the example
From there, if I go to /var/mirror and touch a file (or create one, copy one, whatever) and then try to symlink to it:
touch test.file
ln -s test.file test.cooler.file
I get this error:
Code:
ln -s test.file test.cooler.file
ln: creating symbolic link `test.cooler.file': Operation not supported
Any thoughts, ideas, obvious pointers, links, or other useful input?
Thanks!
-Chad