From 192c8a64efff1a8164a15415ec38e32eefeb03d7 Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Sun, 20 Aug 2023 07:25:31 +0300 Subject: [PATCH] update --- docs/auth.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/auth.md b/docs/auth.md index 7f34c89d..4dad72fb 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -4,7 +4,7 @@ PiKVM OS is based on a regular Linux system, so everything about authorization i It comes with the following default passwords: * **Linux admin** (SSH, console, etc.): user `root`, password `root`. -* **PiKVM Web Interface, API, VNC...**: user `admin`, password `admin`, no 2FA code. +* **PiKVM Web Interface, [API](api.md), [VNC](vnc.md)...**: user `admin`, password `admin`, no 2FA code. **These are two separate entities with independent accounts.** @@ -64,9 +64,9 @@ Please note that `admin` is a name of a default user. It is possible to create s with different passwords to access the Web UI, but keep in mind that they all have the same rights: ``` -# kvmd-htpasswd set # Sets a new user with password -# -# kvmd-htpasswd del # Removes/deletes a user +[root@pikvm ~]# kvmd-htpasswd set # Sets a new user with password +[root@pikvm ~]# kvmd-htpasswd list # Show the list of users +[root@pikvm ~]# kvmd-htpasswd del # Removes/deletes a user ``` -----