Samba on Rasberry Pi installation : sudo apt-get install samba samba-common-bin backup cp /etc/samba/smb.conf /etc/samba/smb.conf.old add user guest with access to "share": sudo adduser guest --home=/home/public --shell=/bin/false --disabled-password sudo chown -R guest:guest /home/public/share configuration /etc/samba/smb.conf: ## Browsing/Identification ### # Change this to the workgroup/NT-domain name your Samba server will part of workgroup = WORKGROUP ####### Authentication ####### security = user [Partage] comment = Partage read only = no writable = yes locking = no path = /media/usbdrive/share guest ok = yes force user = guest restart: sudo service samba restart