We will see how to set up a Samba server on Debian with no password and no authentication.
root@host:~# apt-get install samba
root@host:~# mkdir /share
root@host:~# chown -R nobody:nogroup /share/
root@host:~# chmod -R 777 /share/
[global]
workgroup = WORKGROUP
server string = serv01
security = user
map to guest = bad user
[share]
browseable = yes
path = /share
read only = no
guest ok = yes
create mask = 777
root@host:~# testparm
root@host:~# systemctl restart smbd; systemctl restart nmbd
Contact :