Update README.md

This commit is contained in:
Maxim Devaev 2020-07-28 17:20:04 +03:00 committed by GitHub
parent e71d7dfbfd
commit 01afd5703e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 18 deletions

View File

@ -351,24 +351,24 @@ The Pi-KVM OS is based on Arch Linux ARM and contains all the required packages
Please note: **we strongly discourage the use of VNC on untrusted networks.** The current implementation does not use encryption, and your passwords are transmitted over the network in a plain text. The existing anonymous TLS mode is also not secure enough. Please note: **we strongly discourage the use of VNC on untrusted networks.** The current implementation does not use encryption, and your passwords are transmitted over the network in a plain text. The existing anonymous TLS mode is also not secure enough.
* To use Arduino HID with **v2** platform: * To use Arduino HID with **v2** platform:
1. Build and connect HID according to the [diagram](#v0-diagram). - Build and connect HID according to the [diagram](#v0-diagram).
2. Switch to RW-mode using command `rw`. - Switch to RW-mode using command `rw`.
3. Add these lines to `/etc/kvmd/override.yaml` (remove `{}` in the file before): - Add these lines to `/etc/kvmd/override.yaml` (remove `{}` in the file before):
```yaml ```yaml
kvmd: kvmd:
hid: hid:
type: serial type: serial
reset_pin: 4 reset_pin: 4
device: /dev/kvmd-hid device: /dev/kvmd-hid
``` ```
4. Add this line to `/etc/udev/rules.d/99-kvmd.rules`: - Add this line to `/etc/udev/rules.d/99-kvmd.rules`:
```udev ```udev
KERNEL=="ttyAMA0", SYMLINK+="kvmd-hid" KERNEL=="ttyAMA0", SYMLINK+="kvmd-hid"
``` ```
5. Run `systemctl disable getty@ttyGS0.service`. - Run `systemctl disable getty@ttyGS0.service`.
6. Remove `console=ttyAMA0,115200` and `kgdboc=ttyAMA0,115200` from `/boot/cmdline.txt`. - Remove `console=ttyAMA0,115200` and `kgdboc=ttyAMA0,115200` from `/boot/cmdline.txt`.
7. Flash the Arduino (see [here](#building-the-os), step 8). - Flash the Arduino (see [here](#building-the-os), step 8).
8. Run `reboot`. - Run `reboot`.
----- -----