centos7创建samba

实现用root去访问共享文件夹:

安装samba:
yum -y install samba samba-client samba-common
[root@localhost ~]# smbd -V
Version 4.10.4

创建共享文件夹:
mkdir -p /home/share

配置/etc/samba/smb.conf配置:
cp /usr/share/samba/smb.conf /etc/samba/smb.conf
[root@localhost share]# vim /etc/samba/smb.conf
[global]
workgroup = SAMBA
security = user
passdb backend = tdbsam
printing = cups
printcap name = cups
load printers = yes
cups options = raw

[share]
path = /home/share
writable = yes
create mask = 0644
force create mode = 0644
directory mask = 0755
force directory mode = 0755
available = yes
browseable = yes
read only = no
forceuser = root
forcegroup = root

防火墙和文件夹权限设置:
chmod 777 /home/share
chcon -R -t samba_share_t /home/share
firewall-cmd --permanent --zone=public --add-service=samba
firewall-cmd –reload

创建samba用户:
[root@localhost ~]# smbpasswd -a root
New SMB password:
Retype new SMB password:
[root@localhost ~]#

启用samba:
systemctl enable smb
systemctl restart smb

linux下用smbclient验证:
[root@localhost share]# smbclient //192.168.241.143/share
Enter SAMBA\root’s password:
Try “help” to get a list of possible commands.
smb: > ls
. D 0 Fri Jun 26 02:02:50 2020
… D 0 Fri Jun 26 01:24:21 2020
hello N 0 Fri Jun 26 01:54:29 2020
dd D 0 Fri Jun 26 02:02:30 2020
helloworld D 0 Fri Jun 26 02:02:59 2020

            28289540 blocks of size 1024. 26489952 blocks available

smb: >

win7下验证共享文件夹:
清除所有证书,防止验证失败
在这里插入图片描述

输入共享文件夹路径:
在这里插入图片描述

输入用户名和密码(SAMBA是在smb.conf中设置的):

在这里插入图片描述在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值