当前位置: 首页 > 图文教程 > 服务器 > Linux服务器 > Linux中samba服务器的基本配置

Linux服务器
用VMwareGSX和W2K群集服务实现Exchange群集
在RHAS3中配置流媒体服务器
虚拟服务器实现方法(动态均衡)
用Linux建立局域网服务器
如何设置一个基本的OpenLDAPServer
Apache服务器实现用户验证
巧用TMPFS加速Linux服务器
SUNEnterprise220RServer做Raid1小结
如何查看OpenServer产品的许可过期日
快速搭建TimeServer与NISServer
用Apache+Tomcat创建与管理Web服务器
基于Fedora上建立功能强大的邮件服务器
RedHat8.0上CVS服务器的建立和权限配置
RedHatLinux下配置DHCP服务器实战
Linux代理服务全攻略:Squid篇
MOD_MP3让Apache成为流媒体服务器
Linux服务器设置指南-代理接入服务器(1)
Linux服务器设置指南-代理接入服务器(2)
Linux服务器设置指南-代理接入服务器(3)
Linux服务器设置指南-代理接入服务器(4)

Linux服务器 中的 Linux中samba服务器的基本配置


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-30   浏览: 87 ::
收藏到网摘: n/a

#======================= Global Settings =====================================  全局参数配置,设置的是针对所有的资源
[global]

# workgroup = NT-Domain-Name or Workgroup-Name    ----------------------------  工作组的名称(可以不填,默认就这样)      
  workgroup = soft

# server string is the equivalent of the NT Description field
   server string = Samba Server ---------------------------------------------   对SMB服务器的简要说明

hosts allow = 192.168.1. 192.168.2. 127. --------------------------------  设置可访问SMB服务器的主机(可为IP,主机名,域名)

# Security mode. Most people will want user level security. See
# security_level.txt for details.  ------------------------------ 指定SMB服务器的使用的安全等级。 security = share 指的是当客户机连入SMB服务器时,不需要帐号密码就可以访问资源。
                                                                  security = user   指的是当客户炼乳SMB服务器时,必须输入用户名和密码才能访问
 security = user
# Do not enable this option unless you have read those documents
   encrypt passwords = yes
   smb passwd file = /etc/samba/smbpasswd
#============================ Share Definitions ==============================共享资源参数配置
[homes]              -----------------------用户以帐号和密码访问,是否允许进入自己的宿主文件夹
   comment = Home Directories                  (默认就这样,可以不要修改)
   browseable = no
   writable = yes
   valid users = %S
   create mode = 0664
   directory mode = 0775
[printers] ----------------------------打印机配置
   comment = All Printers
   path = /var/spool/samba
   browseable = no
# Set public = yes to allow user 'guest account' to print
   guest ok = no
   writable = no
   printable = yes
;[myshare]
;   comment = Mary's and Fred's stuff
;   path = /usr/somewhere/shared
;   valid users = mary fred
;   public = no
;   writable = yes
;   printable = no
;   create mask = 0765
[pp]                --------------------以下是我所共享的文件夹
    comment = this is our soft!    共享说明
    path = /www/pp          共享文件夹的路径
    write list = smb   允许写入权限的用户列表,smb用户允许写入
    read list =         只读权限的用户列表
    public = yes     是否允许发布

    当安全等级为user时,这时我们在本机建立的用户必须加入到SMB服务器中,命令为 smbpasswd -a 用户  添加LINUX用户到SMB服务器中,smbpasswd 用户名    修改SMB服务器中用户的口令