1 [root@imxhy ~]# yum -y install samba
2
3 #安装主服务包会自动安装从属samba-common和samba-libs库的包
4
5 ……
6
7 [root@imxhy ~]# yum -y install samba-client #安装客户端
8
9 [root@imxhy ~]# yum -y install samba-winbind #安装windows域映射
10
11 ……
12
13 [root@imxhy ~]# yum -y install samba-winbind-clients #安装windows域映射客户端
14
15 ……
smbd:提供对服务器中文件、打印资源的共享访问,端口为139、445。
提供基于NetBIOS主机名称的解析,端口为137、138。
1 [root@imxhy ~]# systemctl start smb #Centos7.x启动
2
3 [root@imxhy ~]# systemctl start nmb #Centos7.x启动
4
5 [root@imxhy ~]# service smb start #Centos6.x启动
6
7 [root@imxhy ~]# service nmb start #Centos6.x启动