Page 1 of 1

Solved: Symbolic links in Samba

Posted: Tue Aug 03, 2010 10:00 pm
by mister_v
Hi,

I have setup my samba share with symbolic links to other dirs.

But since my latest update id doesn't work anymore.
I see the symbolic links, but can't open them.

Here is the code for my share in smb.conf

Code: Select all

[share]
  comment = Share
  path = /var/share
  valid users = pguest
  public = no
  writable = yes
  printable = no

Re: Symbolic links in Samba

Posted: Wed Aug 04, 2010 5:19 am
by Chris
After some searching I found the solution.

You need to add the following lines in smb.conf
under [global] (Not [share])

Code: Select all

  follow symlinks = yes
  wide links = yes
  unix extensions = no
It seams that in the latest version it has been disabled as default,
because it is considered a security risk.

Re: Symbolic links in Samba

Posted: Mon Nov 01, 2010 9:32 pm
by mister_v
Thanks, this solved my problem.