From f540f170e89152ad8bc411fbbcee34f9a43eff53 Mon Sep 17 00:00:00 2001 From: etkaar <40885610+etkaar@users.noreply.github.com> Date: Sun, 26 Mar 2023 03:04:39 +0200 Subject: [PATCH] Update wifi.md (#978) * Update wifi.md Use double quotes also for the SSID ('MyNetwork') since it may contain spaces. * Update wifi.md Use single (') instead of double quotes (") to prevent any type of string interpolation. --- docs/wifi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wifi.md b/docs/wifi.md index 1b1f9a4f..39c57b19 100644 --- a/docs/wifi.md +++ b/docs/wifi.md @@ -46,7 +46,7 @@ Alternatively you can connect to the PiKVM via SSH. The built-in Web Terminal (a 3. Set network ESSID and password: ``` - # wpa_passphrase MyNetwork 'P@assw0rd' > /etc/wpa_supplicant/wpa_supplicant-wlan0.conf + # wpa_passphrase 'MyNetwork' 'P@assw0rd' > /etc/wpa_supplicant/wpa_supplicant-wlan0.conf ``` !!! note "Using Wi-Fi with hidden ESSID"