Samba是种自由软件,用来让UNIX系列的操作系统与微软Windows操作系统的SMB/CIFS(Server Message Block/Common Internet File System)网络协定做连结。在目前的版本(v3),不仅可存取及分享SMB的资料夹及打印机,本身还可以整合入Windows Server的网域、扮演为网域控制站(Domain Controller)以及加入Active Directory成员。
此软件在Windows与UNIX系列OS之间搭起一座桥梁,让两者的资源可互通有无。
Samba服务器可实现如下功能:
WINS和DNS服务;
网络浏览服务;
Linux和Windows域之间的认证和授权;
UNICODE字符集和域名映射;
满足CIFS协议的UNIX共享等
一、先准备好相关的环境
Liunx系统
镜像Contos
网络浏览服务;
二、samba服务的安装
执行yum安装(需配置好yum源)
[root@localhost ~]# yum install samba samba-client samba-swat
三、检查是否安装成功
[root@localhost ~]# #rpm -qa|grep samba
输入上面的命令,检测一下Samba软件包是否安装好
如果没有安装好,你输入的命令不会有任何提示
如果显示安装,则会显示下面的类似的
[root@localhost ~]# samba-common-3.6.23-36.el6_8.x86_64
[root@localhost ~]# samba-3.6.23-36.el6_8.x86_64
[root@localhost ~]# samba-winbind-3.6.23-36.el6_8.x86_64
[root@localhost ~]# samba-client-3.6.23-36.el6_8.x86_64
[root@localhost ~]# samba-swat-3.6.23-36.el6_8.x86_64
[root@localhost ~]# samba-winbind-clients-3.6.23-36.el6_8.x86_64
四、启动samba服务并配置开机启动
接下来我们要启动samba环境的服务
启动Samba服务
/etc/rc.d/init.d/smb start
停止Samba服务
/etc/rc.d/init.d/smb stop
重新启动Smaba服务
/etc/rc.d/init.d/smb restart
重新加载Smaba服务
/etc/rc.d/init.d/smb reload