Samba服务器的配置解析(3)

1.user :需要身份验证,需要samba账号库
 
104        security = user            #安全级别为user,需要输入用户名和密码
 
105        passdb backend = tdbsam
 
293        [public]                  #公共
 
294        comment = Public dirctory
 
295        path = /abc                  #目录
 
296        public = yes
 
297        writable = yes
 
298        printable = yes
 
299        browsable=yes
 
300        guest ok=yes
 
301        write list = +staff
 
300 [tom]                 
 
302 comment = tom directory
 
304 path = /tom
 
306 browseable = yes
 
308 guest ok = no
 
310 writable = yes
 
312 valid users = tom
 
2.添加用户
 
root@localhost samba]# useradd tom
 
增加samba 账号数据库
 
[root@localhost ~]# smbpasswd -a tom  #添加为smb用户
 
修改 tom目录的所有者,所属组为tom
 
[root@localhost tom]# chown  -R  tom /tom
 
[root@localhost tom]# ll
 
总计 4
 
-rw-r--r-- 1 tom root 9 12-20 07:31 tom.txt
 
重启smb
 
搜索如下:
 

Samba服务器的配置解析


输入用户名和密码

Samba服务器的配置解析


注意:输入一次后系统会有记录,下次就不需要用户和密码,重启以后就会再次要求输入用户和密码

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/bfed04e406890b605460acf53642a82e.html