|
|
samba共享访问时老是提示:挂载 Windows 共享失败。
我想把public文件夹共享为匿名用户可读写
配置如下:
- [global]
- workgroup = MYGROUP
- server string = Samba Server
- security = share
- browseable = yes
- writable = yes
- [public]
- path = /home/zhangting/public
- browseable = yes
- public = yes
- only guest = yes
- writable = yes
- printable = no
复制代码 |
|