Last active
July 12, 2019 07:38
-
-
Save seanbutler/a8a96a324b1363fadc005605496c14e3 to your computer and use it in GitHub Desktop.
install Samba on Raspbian
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 apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install samba samba-common-bin | |
| mkdir /home/pi/Share | |
| sudo nano /etc/samba/smb.conf | |
| [raspberry pi share] | |
| path = /home/pi/shared | |
| writeable=Yes | |
| readable=Yes | |
| create mask=0777 | |
| directory mask=0777 | |
| public=no | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment