<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://jackxiang.com/post/5509/</link>
<title><![CDATA[[实践Ok]让Samba支持软连接，方便开发的实践操作。]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[Unix/LinuxC技术]]></category>
<pubDate>Sat, 18 Aug 2012 10:24:51 +0000</pubDate> 
<guid>http://jackxiang.com/post/5509/</guid> 
<description>
<![CDATA[ 
	今天，自己搭建一个samba时，想建立一个软链接，但发现报错：<br/><textarea name="code" class="JS" rows="15" cols="100">
[2012/08/19 02:13:09.688819,&nbsp;&nbsp;0] param/loadparm.c:10348(widelinks_warning)
&nbsp;&nbsp;Share &#039;jackxiang&#039; has wide links and unix extensions enabled. These parameters are incompatible. Wide links will be disabled for this share.
</textarea><br/>查来查去，原来是少了一行：unix extensions&nbsp;&nbsp;= no ，少这一行，能看见软链接，但点不进去，说是权限不够。<br/>也就是需要三行配置，如下：<br/><textarea name="code" class="php" rows="15" cols="100">
wide links = yes
follow symlinks = yes
unix extensions&nbsp;&nbsp;= no
</textarea><br/>samba的conf代码：<br/><textarea name="code" class="php" rows="15" cols="100">
[global]
workgroup = localhost.localdomain
server string = localhost.localdomain
domain logons = No
security = DOMAIN
;guest account = pcguest
log file = /data1/logs/samba.%m
max log size = 50
;security = share
encrypt passwords = yes
wins server = 192.168.1.108
socket options = TCP_NODELAY
wide links = yes
follow symlinks = yes
unix extensions&nbsp;&nbsp;= no
[homes]
comment = Home Directories
browseable = no
writable = yes
create mask = 0664
create mask = 0664
directory mask = 0775
[jackxiang]
&nbsp;&nbsp;comment = jackxiang home directories
&nbsp;&nbsp;path = /home/jackxiang
&nbsp;&nbsp;valid users = jackxiang
&nbsp;&nbsp;public = no
&nbsp;&nbsp;writable = yes
&nbsp;&nbsp;printable =no
&nbsp;&nbsp;create mask = 0666

</textarea>
]]>
</description>
</item><item>
<link>http://jackxiang.com/post/5509/#blogcomment63796</link>
<title><![CDATA[[评论] [实践Ok]让Samba支持软连接，方便开发的实践操作。]]></title> 
<author>hxngb0xf &lt;zlpf818@domozmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 25 Aug 2012 16:50:01 +0000</pubDate> 
<guid>http://jackxiang.com/post/5509/#blogcomment63796</guid> 
<description>
<![CDATA[ 
	谢谢楼主，好久没看到这么好的贴了
]]>
</description>
</item>
</channel>
</rss>