dotfiles

regexghost dotfiles and scripts
git clone https://git.regexghost.com/dotfiles.git
Log | Files | Refs | README

samba.md (324B)


      1 # Samba Setup
      2 
      3 https://pimylifeup.com/raspberry-pi-samba/
      4 
      5 `sudo apt install samba samba-common-bin`  
      6 `sudo nano /etc/samba/smb.conf`  
      7 `sudo smbpasswd -a <username>`  
      8 `sudo systemctl restart smbd`
      9 
     10 ## Config File
     11 
     12 ``` conf
     13 [pi-video-share]
     14 path = /home/<username>/Videos
     15 writeable = yes
     16 browseable = yes
     17 public = no
     18 ```
     19