Last active
May 17, 2016 14:33
-
-
Save ishults/39d04f1b22f8980a2f9ed91586c5d57e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano /etc/samba/smb.conf | |
# Ensure the file has: | |
workgroup = WORKGROUP | |
wins support = yes | |
# At the bottom add: | |
[pi] | |
comment= Pi | |
path=/home/pi/folder # Change this to whatever folder you want to share | |
browseable=Yes | |
writeable=Yes | |
only guest=no | |
create mask=0777 | |
directory mask=0777 | |
public=no | |
# Add to enable symlinks: | |
follow symlinks = yes | |
unix extensions = no |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment