Post

Visualizzazione dei post da 2021
  SAMBA acts as public share in read/write mode   Install Samba $ apt-get clean $apt-get update $ apt-get upgrade $ apt-get install samba smbclient Create the share $ mkdir /SAMBA/Public $ chmod 0777 /SAMBA/Public $ chown -R nobody:nogroup /SAMBA/Public N.B. In this case I chose /SAMBA/Public but you could use any other path. Configure Samba $ mv /etc/samba/smb.conf /etc/samba/smb.conf.ORIG $ nano /etc/samba/smb.conf [global]    workgroup = WORKGROUP    server string = Samba Server %v on %h    netbios name = FILESERVER    security = user    map to guest = bad user    name resolve order = bcast host    dns proxy = no    bind interfaces only = yes [Public]    path = /SAMBA/Public    writable = yes    guest ok = yes    guest only = yes    read only = no    create mode = 077...