You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

272 lines
15 KiB
Markdown

# FAQ & Troubleshooting
As a first step, we recommend carefully reading our documentation on [GitHub](https://github.com/pikvm/pikvm). Most steps to successfully set up your Pi-KVM are already described there. If you run into any issues you can check this page which will list common errors. If that still doesn't help you you're welcome to raise an [issue ticket](https://github.com/pikvm/pikvm/issues) or [join our Discord](https://discord.gg/bpmXfz5) for further help.
3 years ago
Note: if you can't find an answer to your question here, try the [Community FAQ](Community_FAQ.md). It will be merged with this page in the future
3 years ago
-----
# Navigation
3 years ago
* [Common questions](#common-questions)
* [First steps](#first-steps)
* [Video problems](#video-problems)
3 years ago
* [USB problems (keyboard, mouse, mass storage)](#usb-problems-keyboard-mouse-mass-storage-etc)
3 years ago
* [Web UI problems](#web-ui-problems)
3 years ago
* [Hardware problems (Wi-Fi, ATX, etc)](#hardware-problems-wi-fi-atx-etc)
3 years ago
-----
3 years ago
# Common questions
3 years ago
3 years ago
### Can I connect multiple servers to a single Pi-KVM?
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* Yes, but it will require additional work to set up. See [this page](multiport.md).
</details>
3 years ago
### How can I get the access to Pi-KVM in my local network over Internet?
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* You can use port forwarding for port 443 on your router if it has an external IP address. In all other cases, you can use the excellent free VPN service [Tailscale](tailscale.md), which is configured on Pi-KVM with a [few simple commands](tailscale.md).
</details>
3 years ago
### Can I use Pi-KVM with non-Raspberry boards (Orange, Nano, etc)?
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* Yes, but you will have to prepare the operating system yourself. As for the Pi-KVM software, you will need to replace some config files (such as UDEV rules). If you are a developer or an experienced system administrator, you will not have any problems with this. In addition, we are open to patches. If you need help with this, please contact us via [Discord](https://discord.gg/bpmXfz5).
</details>
-----
3 years ago
# First steps
3 years ago
3 years ago
### What is the default password? How do I change it?
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* 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
3 years ago
kvmd-htpasswd set admin # Change web ui admin password
3 years ago
ro # Back to read-only
```
</details>
3 years ago
### How do I get root access in the web terminal?
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* The web terminal works with the account `kvmd-webterm`. This is a regular user with no administrator privileges and. In addition, `sudo` and login are 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**.
3 years ago
</details>
3 years ago
### Where is the Pi-KVM configuration located?
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* Almost all KVMD (the main daemon controlling Pi-KVM) configuration files located in `/etc/kvmd`. You can also find nginx configs and SSL certificates there. KVMD configs use [YAML](config.md) syntax. The specific platform parameters can be found in the file `/etc/kvmd/main.yaml` and **you should never edit it**. Use `/etc/kvmd/override.yaml` to redefine the system parameters.
Another files that are also not recommended for editing have read-only permissions. If you edit any of these files, you will need to manually make changes to them when you upgrade your system. You can view the current configuration and all available KVMD parameters using the command `kvmd -m`.
</details>
3 years ago
### I can't edit any file on Pi-KVM. Why is the system in read-only mode?
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* The Pi-KVM file system is always mounted in read-only mode. This measure prevents it from being damaged by a sudden power outage. To change the configuration you must first switch the filesystem to write mode using the command `rw` from root. After the changes, be sure to run the command `ro` to switch it back to read-only.
</details>
3 years ago
### How do I update Pi-KVM with the latest software?
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* Pi-KVM OS is based on Arch Linux ARM and is fully updated from the repository by a regular package manager. Connect to your Pi-KVM via ssh and run:
3 years ago
```
rw
pacman -Syu
reboot
```
:exclamation: Pacman saves all installed packages in a compressed format so that you can roll back to the old version if something goes wrong. After you've updated and made sure everything works, it makes sense to clear the package cache so that it doesn't take up space on the SD card: `rw; rm -rf /var/cache/pacman/pkg; ro`.
</details>
3 years ago
-----
3 years ago
# Video problems
3 years ago
3 years ago
### Pi-KVM does not show the video from the computer at all
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
3 years ago
* Double-check that the video capture device is connected correctly. For the [CSI bridge](/README.md#for-the-hdmi-csi-bridge), this should be exactly the camera port, for the [USB dongle](/README.md#for-the-hdmi-usb-dongle), strictly the port indicated in the picture.
* Some laptops do not output any signal until you switched the output (usually via the FN + and an F5 key on the keyboard).
* Your computer may have turned on sleep mode for the monitor. Move the mouse and turn it off.
3 years ago
</details>
### The video works in the booted OS, but not in the BIOS/UEFI
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* The problem appears on Intel NUC, GA-H77-DS3H, and some other devices with using CSI bridge. All you need to do is [change the EDID data](edid.md). This is the information about supported resolutions that the CSI bridge reports to your computer.
</details>
3 years ago
### Glitchy or wrong BIOS/UEFI resolution
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* On some motherboards, the BIOS may be displayed at a lower resolution, or with some rendering issues/glitches, specially on newer ASUS ones. Like this:
<img src="../img/bios_glitch.png" alt="ASUS BIOS glitch" width="400"/>
This can be solved by enabling the **Compatibility Support Module (CSM)** in your BIOS, usually under the **Boot** options.
If you can't or don't want to enable the CSM, you can try connecting a DisplayPort monitor, or a [dummy plug](http://amazon.com/s?k=displayport+dummy+plug). If you remove the DP cable/adapter the bug will reappear.
If none of this works, try connecting the DP cable first, boot into the BIOS, disable the CSM and shutdown (do not restart) your PC. Then, boot into the BIOS and enable the CSM before shutting down your PC. Then connect the HDMI and turn your PC on again.
</details>
3 years ago
### CSI bridge does not work with official Raspberry Pi PoE HAT
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Details [here](https://github.com/pikvm/pikvm/issues/6). The reason is that the [official HAT](https://www.raspberrypi.org/products/poe-hat) has a built-in fan controller that conflicts with the TC358743 chip of the bridge. The solution is to disable the fan control and connect it to the power line so that it works continuously. To turn off the controller you need to add the line `disable_poe_fan=1` to `/boot/config.txt`.
</details>
3 years ago
### The video freezes a few seconds after the start, restarting the Web UI or VNC does not help
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* The story is [here](https://github.com/raspberrypi/firmware/issues/1562). Very-very rarely, Raspberry boards can have a hardware defect that causes some of the chip blocks to be unstable under normal power. The solution is to slightly increase the power supply, as in overclocking. Add `over_voltage=1` (or `over_voltage=2` if previous doesn't help) to `/boot/config.txt` and perform `reboot`.
To make sure that you are facing this particular problem, first perform a diagnostic:
- Boot the Pi-KVM without the specified options.
- Open Web-UI and wait for freezing.
- Click **System -> Reset Stream**.
- Click **System -> Open log** and make sure that the log contains messages like `H264: Can't wait for the VCOS semaphore`.
- Make sure that the last message from ustreamer was `H264: Configuring MMAL encoder` (not counting messages about connecting and disconnecting stream clients).
</details>
3 years ago
### No image from computer with Linux + Awesome WM
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Sometimes Awesome WM on Linux can't recognize a video output change on a cable. That is, if the cable was first inserted into the monitor, and then you reconnected it to Pi-KVM - it may happen that you will not see the image. It seems that the problem is Awesome WM, since for example with KDE, it is not reproducable. If you turn on your workstation with Pi-KVM already connected, everything will work fine.
3 years ago
</details>
-----
3 years ago
# USB problems (keyboard, mouse, mass storage, etc)
3 years ago
3 years ago
### My computer does not recognize USB of Pi-KVM v2+ at all
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Make sure that you have used the correct USB cable with DATA lines to connect the OTG port for the Raspberry to the computer. You may have decided to use a USB hub instead of a Y-cable and **it won't work**. Use good cables and follow the instructions :)
3 years ago
* In very rare cases, some motherboards contain a buggy BIOS that does not understand the composite USB device because BIOS doesn't implement the USB stack correctly. In this case, we can suggest the [Arduino HID emulator](arduino_hid.md) from v0 platform with v2.
3 years ago
</details>
3 years ago
### BIOS/UEFI does not recognize USB of v2+, but computer does
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* If you are using a USB hub or USB PCI controller, this may not be handled by your BIOS. Try to use another USB port. Some ports may have a built-in hub on the motherboard and a buggy BIOS that can't handle it.
</details>
3 years ago
### The keyboard works in BIOS/UEFI, but the mouse does not
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* The BIOS does not support absolute mouse mode, which is preferred by Pi-KVM. In this case, [you can enable relative positioning mode](mouse.md).
</details>
3 years ago
3 years ago
### Mass storage drive working (I can boot an image from Pi-KVM v2+), but keyboard/mouse does not
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* In very rare cases, some motherboards contain a buggy BIOS that does not understand the composite USB device because BIOS doesn't implement the USB stack correctly. In this case, we can suggest the [Arduino HID emulator](arduino_hid.md) from v0 platform with v2+. Thus the Pi-KVM will be connected by two USB cables to the motherboard: one of them will be responsible for the keyboard and mouse, the other for everything else.
</details>
3 years ago
### I can't get into UEFI/FileVault when booting my Mac using Pi-KVM v2+
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* The problem is specific to early-model Macs and does not occur on ARM-based Macs (Apple M1 or so). UEFI does not initialize the keyboard of the composite device during boot, however, if you use the standard keyboard to get to the UEFI/FileVault menu, you will see that the keyboard, mouse, and mass storage will work fine. In this case, we can suggest the [Arduino HID emulator](arduino_hid.md) from v0 platform with v2+. Thus, the Pi-KVM will be connected by two USB cables to the Mac: one of them will be responsible for the keyboard and mouse, the other for everything else.
3 years ago
</details>
3 years ago
3 years ago
### Big mouse latency on another Raspberry as managed server
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Unusual case: RPi4 is used as a Pi-KVM to control RPi3. In this case, the mouse delay may be several seconds. To fix it, just add line `usbhid.mousepoll=0` to `/boot/config.txt` to the server (i.e. RPI3 in our case) and reboot it.
</details>
-----
# Web UI problems
3 years ago
### Chrome Certificate Issue
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* The latest versions of Chrome do not allow access to the page with a self signed certificate, so if you see the following screen when loading the pi-kvm website:
<img src="../img/chrome.png" alt="Chrome Blocking" width="400"/>
* You can proceed by typing ```thisisunsafe``` and Chrome will then load the page.
</details>
3 years ago
### Pressing ESC in full screen mode causes this to close
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Your browser does not support [keyboard lock](https://caniuse.com/mdn-api_keyboard_lock). Right now, only Chrome implements this.
</details>
3 years ago
### I can't use this on iOS: the Web UI network indicator flashes yellow
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Safari on iOS contains an old bug that prevents a web application from connecting over a web socket if you use a self-signed certificate on the server (the default for Pi-KVM). There are two solutions:
- Install a valid SSL certificate for Pi-KVM host to `/etc/kvmd/nginx/ssl`.
- Disable HTTPS at all in `/etc/kvmd/nginx/nginx.conf`. To do this, comment some lines [like in this file](https://github.com/pikvm/kvmd/blob/master/configs/nginx/nginx.conf#L39) and restart web server: `systemctl restart kvmd-nginx`.
3 years ago
3 years ago
:exclamation: Don't do this for insecure networks or the Internet. Your passwords and what you type on the keyboard will be transmitted in unencrypted form.
</details>
3 years ago
### The Web UI doesn't work properly in Firefox while it works fine in Chrome
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* This might be related to your specific hardware combination or browser hardware acceleration. Try [disabling hardware acceleration in Firefox](https://support.mozilla.org/en-US/kb/hardware-acceleration-and-windowblinds-crash) or updating your GPU and chipset drivers.
</details>
3 years ago
### Unexpected interruption while loading the image for Mass storage drive
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* If problems occur when uploading even a small disk image it may be due to unstable network operation or antivirus software. It is well known that Kaspersky antivirus cuts off Pi-KVM connections during uploading, so you should add the Pi-KVM website to Kaspersky's list of exceptions or not filter web requests with the antivirus. Antivirus programs can also affect the performance of certain interface elements, for example the quality slider. For Kaspersky, the steps to add the network address of Pi-KVM's website to the exclusion list is: **Protection -> Private browsing -> Categories and exclusions -> Exclusions**.
</details>
3 years ago
### I can't copy clipboard contents from the server (the machine controlled via Pi-KVM) to the client
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* The clipboard only works from the client to the server not vice versa. There is currently no way to do it.
</details>
3 years ago
-----
3 years ago
# Hardware problems (Wi-Fi, ATX, etc)
3 years ago
3 years ago
### No Wi-Fi on Raspberry Pi Zero W
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Some Zeros contain a defective Wi-Fi chip. You can either return the device to the store, or try the [software workaround](https://github.com/pikvm/pikvm/issues/137).
</details>
3 years ago
### LEDs/Switches does not work in ATX control
3 years ago
<details>
3 years ago
<summary>Click to view</summary>
3 years ago
* Double check your wiring as per [the documentation](/README.md#setting-up-the-v2). Make sure you placed the relays (G3VM-61A1) in the correct orientation. The relays for switches (Power, Reset) have a different orientation than the ones for LEDs.
</details>