Difference between revisions of "Samba Setup"

From rbachwiki
Jump to navigation Jump to search
Line 1: Line 1:
=Install Samba=
=Install Samba=
  sudo apt-get install samba smbfs
  sudo apt-get install samba
==Create Directory to be shared==
==Create Directory to be shared==
  sudo mkdir shared
  sudo mkdir shared

Revision as of 19:24, 8 May 2019

Install Samba

sudo apt-get install samba

Create Directory to be shared

sudo mkdir shared

Change ownership

sudo chmod pi:pi shared2

Edit Samba config file

sudo nano /etc/samba/smb.conf
[shared] <---- This is the name of the shared folder so change it to whatever the folder is called
path = /shared
available = yes
valid users = pi
read only = no
browseable = yes
public = yes
writable = yes
create mask = 775
write list = pi bacchas

Restart Samba

sudo /etc/init.d/samba restart