From 3769d0f703c8b30f7736beada07debb822125edf Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Fri, 29 Nov 2024 11:23:35 +0100 Subject: [PATCH] Add additional info to network settings --- tools/include/markdown/NE002-footer.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tools/include/markdown/NE002-footer.md diff --git a/tools/include/markdown/NE002-footer.md b/tools/include/markdown/NE002-footer.md new file mode 100644 index 000000000..6d7131af2 --- /dev/null +++ b/tools/include/markdown/NE002-footer.md @@ -0,0 +1,23 @@ +=== "Wired device check" + + In order to configure your network devices, they need to be supported the kernel. + + To verify, use command: + + ```sh + ip addr + ``` + + It is usually something like eth0, enp4s3 or lan. + +=== "Wireless device check" + + In order to configure your wireless network devices, they need to be supported the kernel. + + To verify, use command: + + ```sh + iw dev | awk '$1=="Interface"{print $2}' + ``` + + It is usually something like `wlan0`, `wlo1` or `wlx12334c47dec3`. If you get blank response, it means your WiFi device / dongle is not supported by the kernel.