标签:linu dom ystemd 配置文件 dead 创建文件 samba smb 添加用户 进入
WAN:广域网1、安装:
#yum install samba samba-client -y
2、设置开机启动:
#systemctl enable smb.service
ln -s ‘/usr/lib/systemd/system/smb.service‘ ‘/etc/systemd/system/multi-user.target.wants/smb.service‘
3、查看是否设置成功
#systemctl status smb.service
smb.service - Samba SMB Daemon
Loaded: loaded (/usr/lib/systemd/system/smb.service; enabled)
Active: inactive (dead)
4、启动samba服务
#systemctl start smb.service
5、再次查看启动状态
#systemctl status smb.service6、配置配置文件
进入目录:
#cd /etc/samba
备份:
#cp smb.conf smb.conf.bak
修改smb.conf文件,找到“[homes]”,修改以下设置:
[homes]
comment = Home Directories
browseable = no
writable = yes
#valid users = %S
#valid users = MYDOMAIN\%S
create mask = 0664
force create mode = 0664
directory mask = 0775
force directory mode = 0775
create mask = 0664
force create mode = 0664
directory mask = 0775
force directory mode = 0775
说明:
默认创建文件是-rw-rw-r-- 664权限
默认创建目录是rwxrwxr-x 775权限
7、添加用户
#smbpasswd -a username
8、selinux设置
#getsebool -a | grep samba?
#setsebool -P samba_enable_home_dirs on
9、防火墙,使用新的防火墙firewall添加就可以,比iptables更方便
#firewall-cmd --list-services
#firewall-cmd --permanent --add-service=samba
#firewall-cmd --reload
#firewall-cmd --list-services
10、重启samba服务
#systemctl restart smb.service
增加samba用户提示Failed to add entry for user
[root@ubuntu ~]# smbpasswd -a test
New SMB password:
Retype new SMB password:
Failed to add entry for user test.
标签:linu dom ystemd 配置文件 dead 创建文件 samba smb 添加用户 进入
原文地址:http://blog.51cto.com/13956258/2173962