修正 markdown 语法错误。

Signed-off-by: ithink.chan <chenyang@autoai.com>
This commit is contained in:
ithink.chan 2019-07-31 10:00:41 +08:00
parent 058d458e9a
commit d72eb07f9a
1 changed files with 96 additions and 88 deletions

View File

@ -8,12 +8,16 @@ smbd 的运行依赖于 /etc/samba/smb.conf 配置文件,这个是 smbd 的默
SELinux 开启的状态下会影响其他系统对 Samba 服务器的访问,可能造成 Windows 或 Android 系统的 Samba 客户端无法访问服务器(错误提示内容类似于没有授权之类),可以关闭 SELinux 或正确设置 SELinux。临时关闭 SELinux 的方法如下:
$ setenforce 0
```sh
setenforce 0
```
此时查看 SeLinux 状态
$ sestatus
```sh
sestatus
Current mode: permissive
```
永久关闭 SeLinux需要重启需要修改 /etc/selinux/config 文件:
@ -57,14 +61,18 @@ sync always = yes
在 shell 中输入如下命令为 samba 服务分配账户和密码
$ smbpasswd -a <user name>
```sh
smbpasswd -a <user name>
```
## 开启 Samba 服务
通过 systemctl 开启 samba 服务命令如下:
$ systemctl enable smb.service
$ systemctl start smb.service
```sh
systemctl enable smb.service
systemctl start smb.service
```
必要时需要关闭防火墙,或设置防火墙规则。