From 0ce31690f9d40931622a463590a0896f0cccb292 Mon Sep 17 00:00:00 2001 From: StephanStS Date: Thu, 5 Mar 2026 20:45:27 +0100 Subject: [PATCH 1/2] Bullseye installation description removed --- docs/software/file_servers.md | 57 +++++++++-------------------------- 1 file changed, 15 insertions(+), 42 deletions(-) diff --git a/docs/software/file_servers.md b/docs/software/file_servers.md index 06155280d..b11c5a8cb 100644 --- a/docs/software/file_servers.md +++ b/docs/software/file_servers.md @@ -112,56 +112,29 @@ The Samba server lets you share files on your DietPi system with ease based on t systemctl restart nmbd smbd ``` -=== "Use `wsdd` to view shares" +=== "Use `wsdd2` to view shares" - In case of problems with the Samba share not showing up in the Windows network view, the `wsdd` daemon (Web Service Dynamic Discovery host daemon) can be installed. This is achieved with the following steps: + In case of problems with the Samba share not showing up in the Windows network view, the `wsdd2` daemon (Web Service Dynamic Discovery host daemon) can be installed. This is achieved with the following steps: - === "Bookworm and later" - - Install WSDD via APT: - - ```sh - apt install wsdd2 - ``` - - Start the service via: - - ```sh - systemctl start wsdd2 - ``` - - Check the service status via: - - ```sh - systemctl status wsdd2 - ``` - - !!! note "We use the WSDD2 variant written in C here." - - The original WSDD is written in Python, but we prefer the C variant, for less dependencies and RAM usage. In case, you could also use the original variant, where package and service are called `wsdd` instead of `wsdd2`. - - === "Bullseye and earlier" + ```sh + apt install wsdd2 + ``` - Add the 3rd party repository and install WSDD via APT: + Start the service via: - ```sh - curl -sSfL 'https://pkg.ltec.ch/public/conf/ltec-ag.gpg.key' | gpg --dearmor -o /etc/apt/trusted.gpg.d/dietpi-wsdd.gpg --yes - echo "deb https://pkg.ltec.ch/public/ $G_DISTRO_NAME main" > /etc/apt/sources.list.d/dietpi-wsdd.list - apt update - apt install wsdd - ``` + ```sh + systemctl start wsdd2 + ``` - Start the service via: + Check the service status via: - ```sh - systemctl start wsdd - ``` + ```sh + systemctl status wsdd2 + ``` - Check the service status via: + !!! note "We use the WSDD2 variant written in C here." - ```sh - systemctl status wsdd - ``` + The original WSDD is written in Python, but we prefer the C variant, for less dependencies and RAM usage. In case, you could also use the original variant, where package and service are called `wsdd` instead of `wsdd2`. *** From cf0bfe4b175fbc970b34b2d6545eae3a8ac81d54 Mon Sep 17 00:00:00 2001 From: StephanStS Date: Thu, 5 Mar 2026 20:47:00 +0100 Subject: [PATCH 2/2] Update file_servers.md --- docs/software/file_servers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/software/file_servers.md b/docs/software/file_servers.md index b11c5a8cb..2e7893c4a 100644 --- a/docs/software/file_servers.md +++ b/docs/software/file_servers.md @@ -132,7 +132,7 @@ The Samba server lets you share files on your DietPi system with ease based on t systemctl status wsdd2 ``` - !!! note "We use the WSDD2 variant written in C here." + !!! note "We use the WSDD2 variant written in C here" The original WSDD is written in Python, but we prefer the C variant, for less dependencies and RAM usage. In case, you could also use the original variant, where package and service are called `wsdd` instead of `wsdd2`.