更改

跳转至: 导航搜索

CentOS服务搭建-02-samba文件服务

添加243字节, 2019年9月27日 (五) 10:23
配置文件共享、用户、samba
# 创建用户组和用户:
#: groupadd samba-jyc # samba-jyc组
#: useradd -g samba-jyc share123 user123 # samba-jyc 组下的用户 share123user123#: passwd share123 # share123 user123 的密码设置,两次# 添加samba文件共享用户添加samba文件的共享用户#: # smbpasswd -a share123 user123 # 光添加系统账户还不够系统账户以外添加samba账户, 需要把已经存在的系统账户添加到samba中才可以访问共享目录#: smbpasswd的参数说明才可以访问共享目录 // 参数说明: -a: 添加 -x: 删除 -d: 禁用 -e: 启用## 对于共享目录需要使用chown 添加文件夹的用户权限,比如: chown user123:samba-jyc share-jyc # 给samba-jyc组的user123用户添加权限到share-jyc文件夹
# 修改samba配置
#: vi /etc/samba/smb.conf
#: [global]
#: workgroup = JYCSAMBA
#: security = user #: smb4.0开始使用
#: passdb backend = tdbsam
#:
#: printing = cups
#: printcap name = cups
#: cups options = raw
#:
#: [homes] # 自定义,windows用户看到的文件夹名称#: comment = JYC Server-databackup share # 自定义,windows用户看到的文件夹描述
#: path = /home/sharejyc
#: valid users = %S, %D%w%S
#: read only = No
#: inherit acls = Yes
#: # 2019-09-26 增加
#: writable = yes
#: create mask = 0777
#: directory mask = 0777
#: force directory mode = 0777# 未使用#: force create mode = 0777# 未使用
=smb.conf说明:=
490
个编辑

导航菜单