mirror of
https://github.com/pikvm/pikvm
synced 2024-11-01 09:20:17 +00:00
3.1 KiB
3.1 KiB
Some random and useful recipes
Take a HDMI screenshot via console on Pi-KVM
# curl --unix-socket /run/kvmd/ustreamer.sock http://localhost/snapshot -o screen.jpg
Get installed KVMD version via console
# pacman -Q | grep kvmd
Upload .ISO images manually
- Remount internal storage to rw (read-write):
# kvmd-helper-otgmsd-remount rw
- Upload the .ISO image(s) to
/var/lib/kvmd/msd/images
via scp or similar. - Create an empty file in
/var/lib/kvmd/msd/meta/
with the exact name (case sensitive!) of the uploaded image. This will indicate Pi-KVM that the uploaded image is okay and can be used. For example:/var/lib/kvmd/msd/meta/ubuntu-18.04.4-desktop-amd64.iso.complete
- Remount internal storage back to ro (read-only):
# kvmd-helper-otgmsd-remount ro
Enable Serial-over-USB connection
Specifically to v2. This can be used for terminal access from the managed server to the Pi-KVM, or for any other purpose that requires a serial connection. In the last case, you only need to perform step 1 and reboot.
- Edit
/etc/kvmd/override.yaml
(remove{}
if this your first configuration entry) and add these lines:otg: devices: serial: enabled: true
- Run the following command:
# echo ttyGS0 >> /etc/securetty
- Create the directory
/etc/systemd/system/getty@ttyGS0.service.d
and add a file file namedttyGS0.override
into it. Afterwards edit the file and copy this into it:[Service] TTYReset=no TTYVHangup=no TTYVTDisallocate=no
- Run these comands:
# systemctl enable getty@ttyGS0.service # reboot
- Once Pi-KVM is rebooted you will have access to a virtual serial port on the server that the USB is connected to. Use mingetty, screen, putty, or something like this to access the kvm from the server. The port is called
/dev/ttyAMA0
.
Enable Ethernet-over-USB network
Specifically to v2. When combined with configuring a DNS server, FTP, or SMB (for example), this is a powerful way to extend the capabilities of Pi-KVM.
- Edit
/etc/kvmd/override.yaml
(remove{}
if this your first configuration entry) and add these lines:
Theotg: devices: ethernet: enabled: true driver: ecm host_mac: 48:6f:73:74:50:43 kvm_mac: 42:61:64:55:53:42
host_mac
address will be used on the server's network interface. Thekvm_mac
means the address that will be assigned to the local interface on the Pi-KVM. The KVM interface will be calledusb0
.r's network interface. If thehost_mac
orkvm_mac
is not specified, a random value will be used. Thedriver
parameter means the protocol that will be used for the USB network. The default value isecm
so it can be passed it this example. Other possible values areeem
,ncm
andrndis
. - Perform
reboot
.
❗ When this feature is activated, the Pi-KVM interface and other ports will be available to the host. Use iptables for restrictions.