#### SAMBA
实验一:匿名登录
```bash
1.挂载光盘
2.编写yum仓库
[root@localhost yum.repos.d]# cp CentOS-Base.repo{,.bak} 或者 [root@localhost yum.repos.d]# cp CentOS-Base.repo CentOS-Base.repo.bak
3.安装软件(samba)
[root@localhost ~]# yum list | grep sam samba.x86_64 [root@localhost ~]# yum Install -y smb
4.关闭防火墙
5.关闭selinux
6.新建文件夹(用来做共享)
[root@localhost ~]# mkdir /test1
7.修改主配置文件
[root@localhost ~]# vim /etc/samba/smb.conf [global] workgroup = SAMBA map to guest = bad user security = user [public] path = /test1 writable = yes public = yes
8.重启服务
[root@localhost ~]# systemctl restart smb
9.验证:
能访问但是不能写入文件
原因:共享文件夹本身没有写权限
解决方法:给共享文件夹添加写权限
[root@localhost ~]# ls -ld /test1/ drwxr-xr-x. 2 root root 6 Apr 8 01:22 /test1/ [root@localhost ~]# chmod o+w /test1/ [root@localhost ~]# ls -ld /test1/ drwxr-xrwx. 2 root root 6 Apr 8 01:22 /test1/