## Checklist

[ ] sudo -i
[ ] sudo apt install samba
[ ] whereis samba
[ ] ufw allow samba
[ ] nano /etc/samba/smb.conf
      Uncomment and Modify

      [global]
      workgroup = <workgroup>

      [homes]
      comment = Home Directories
      browseable = no
      read only = no
      create mark = 0660
      directory mask = 0771
      valid users = @smbgrp
      writeable = yes

      [sambashare]
      path = /srv/shared
      valid users = root
      browseable = yes
      writable = yes
      read only = no
[ ] Create Samba Group: groupadd smbgrp
[ ] Add users to Samba Group (Ex: adduser <uid> smbgrp)
[ ] Add users to Samba (Ex: smbpasswd -a <uid>)
[ ] mkdir /srv/shared
[ ] chmod -R 0770 /srv/shared
[ ] chown root:smbgrp /srv/shared
[ ] systemctl restart smbd.service nmbd.service
[ ] Snapshot (Samba configured)
