samba简单配置

1. 需要用户名、密码的共享

往samba里面添加现有的系统用户的

smbpasswd -a 用户

添加共享目录

修改/etc/samba/smb.conf 添加

[共享目录名称]
comment = 注释
path = 共享路径
public = yes
writable = yes
printable = no
write list = +用户

 

2. 不需要用户名和密码的共享

修改/etc/samba/smb.conf 中的 [global] 节点的 security 属性值(user表示用户认证,share表示不需要认证,domain表示域控制器)

  security = share

添加共享目录

修改/etc/samba/smb.conf 添加

[共享目录名称]
comment = 注释
path = 共享路径
public = yes
writable = yes
printable = no
writable = +可写用户 guest ok
= yes

 

 

posted on 2013-01-06 18:06  JesseFang  阅读(211)  评论(0编辑  收藏  举报