commit 752294cbc227640959123aa782c5c3677f7830e4 parent cabd6af2d53c671894f69b95e5b4762726d7330f Author: regexghost <dev@regexghost.com> Date: Mon, 15 Jun 2026 21:54:26 +0100 samba guide and moved to guides/ Diffstat:
| R | archInstallGuide.md -> guides/archInstallGuide.md | | | 0 | |
| R | commands.txt -> guides/commands.txt | | | 0 | |
| A | guides/samba.md | | | 17 | +++++++++++++++++ |
3 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/archInstallGuide.md b/guides/archInstallGuide.md diff --git a/commands.txt b/guides/commands.txt diff --git a/guides/samba.md b/guides/samba.md @@ -0,0 +1,17 @@ +# Samba Setup + +`sudo apt install samba samba-common-bin` +`sudo nano /etc/samba/smb.conf` +`sudo smbpasswd -a <username>` +`sudo systemctl restart smbd` + +## Config File + +``` conf +[pi-video-share] +path = /home/<username>/Videos +writeable = yes +browseable = yes +public = no +``` +