mirror of https://github.com/pikvm/pikvm.git
Update faq.md
This commit is contained in:
parent
6c53cc24e5
commit
46bf76d043
21
pages/faq.md
21
pages/faq.md
|
|
@ -19,6 +19,27 @@ As a first step we recommend carefully reading our documentation on [GitHub](htt
|
||||||
-----
|
-----
|
||||||
|
|
||||||
## First steps
|
## First steps
|
||||||
|
<details>
|
||||||
|
<summary>What is the default password? How do I change it?</summary>
|
||||||
|
|
||||||
|
* There are two types of accounts: OS and Pi-KVM (web interface) accounts. The system account `root` can be used for SSH/UART access and has the password `root`. The web interface account is called `admin` and has the password `admin`. The Pi-KVM account cannot be used for SSH access and vice versa.
|
||||||
|
|
||||||
|
To change passwords, use the following commands (under root):
|
||||||
|
```bash
|
||||||
|
su - # If you're in the webterm
|
||||||
|
rw # Switch filesystem to read-write mode
|
||||||
|
passwd root # Change OS root password
|
||||||
|
kvmd-passwd set admin # Change web ui admin password
|
||||||
|
ro # Back to read-only
|
||||||
|
```
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><b>How do I get <i>root</i> access in the web terminal?</b></summary>
|
||||||
|
|
||||||
|
* The web terminal works with the account `kvmd-webterm`. This is a regular user with no administrator privileges. In addition, `sudo` is disabled for this user for security reasons. To get `root` access, you need to use the `su -` command (minus is important) and **enter the root password**.
|
||||||
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary><b>Where is the Pi-KVM configuration located?</b></summary>
|
<summary><b>Where is the Pi-KVM configuration located?</b></summary>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue