首先,将共享方式改为
security = share
1、免密码访问
mkdir /data/test_share
cd /data/
chown -R nobody.nobody test_share
chmod -R 777 test_share
vi /etc/samba/smb.conf
加入以下内容
[File]
comment = File Server
path = /data/test_share
browseable = yes
writable = yes
guest ok = yes
write list = +staff
service smb restart
这样就可以免密码访问了
2、需要密码才能访问的共享
假设用户是share1,密码是i3zH7Xhw
mkdir /data/share1
cd /data/share1
useradd share1
passwd share1
输入密码:i3zH7Xhw
chown -R share1.share1 share1
chmod -R 770 share1
smbpasswd -a ming2
输入密码:i3zH7Xhw
vi /etc/samba/smb.conf
加入以下内容
[share1]
comment = share1
path = /data/share1
writable = yes
valid users = share1
public = no
service smb restart
这样,就需要输入密码才能访问共享