samba(smb)
samba服务
windows和linux之间互相共享文件
端口:139
# lsof -i:139
DNS服务器常见地址 8.8.8.8
114.114.114.144
8.8.4.4
服务器端:
安装软件
samba-client.x86_64
samba-common.x86_64
samba.x86_64
# yum install samba-client samba samba-common -y
服务端
启动服务:
# systemctl start smb //注意是服务名是smb
# mkdir /test/ //共享目录
# chmod 777 /test/
配置
# vim /etc/samba/smb.conf
#开头的是注释(说明)
局部配置: //直接到最后添加配置共享信息
[test] //共享名称,名字可以不一样,路径要写对
comment = this share my /tmp directory //描述
path = /test //共享目录
public = yes //允许来宾用户访问
writable = yes //与readonly相反
# useradd wing //添加系统账户
# smbpasswd -a wing //添加smb账户
# systemctl restart smb
# touch /test/a.txt
客户端
windows
1.网上邻居
2.资源管理器--> \\172.16.70.251
3.运行 --> \\172.16.70.251
登陆所需要的账户密码是上文中所建立的用户密码
网友评论