Config Mac OSX Lion’s Samba share
Posted: January 27th, 2012 | Author: Vincent | Filed under: OS X | No Comments »smb.conf no longer work. The actual configuration is stored at /System/Library/LaunchDaemons/com.apple.smbd.plist
To make Lion’s samba share follow symbolic link, you need to modify “ProgramArguments”
from:
<key>ProgramArguments</key>
<array>
<string>/usr/sbin/smbd</string>
</array>
</code>
to:
<key>ProgramArguments</key>
<array>
<string>/usr/sbin/smbd</string>
<string>--no-symlinks</string>
<string>false</string>
</array>
Leave a Reply