Commands to create a smb share for windows clients on any linux pc.
sudo apt-get install samba samba-common-binsudo smbpasswd -a your-user-namecat >> /etc/samba/smb.conf<< EOF
# NAS Share
[ship]
path = /media/raid1
comment = Raspberry Share
valid users = your-user-name
writable = yes
browsable = yes
create mask = 0770
directory mask = 0770
public = no
EOFsudo testparm
sudo systemctl enable smbd
sudo systemctl restart smbd