dotfiles

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

samba.md (274B)


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