samba服务器搭建---学习笔记

samba服务搭建

服务器端

IP为10.18.44.70

#yum -y install samba samba-client samba-common //下载与samba服务有关的包
#systemctl start smb             //开启服务
#vim /etc/samba/smb.conf   //修改配置文件
[test]
comment = this is my /tmp directory  // 注释
path = /tmp   //共享目录
public = yes   //允许来宾用户访问
writable = yes  
guest ok = yes
#useradd Annie   //添加系统用户
#smbpasswd -a Annie   //添加smb用户
#systemctl start smb   //启动服务


客户端

windows

1.资源管理器  \\10.18.44.70
2.网上邻居   \\10.18.44.70
3.浏览器   \\10.18.44.70

linux

1.挂载:mount //10.18.44.70/test /opt -o username=Annie
2.命令:smbclient //10.18.44.70/test

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章