this post was submitted on 18 Jun 2023
9 points (100.0% liked)

Selfhosted

39273 readers
211 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Hi, I was wondering about the software utilised in DIY KVM products like PiKVM and BliKVM.

If I understand correctly, to be able to interface with a computer like with a KVM, you would have to:

  1. Have an HDMI capture card capture the feed from the server.
  2. Feed it into the main computer.
  3. Have both a VNC server and VNC client running on the main computer.
  4. Feed the HDMI capture to the VNC server.

If this is indeed the flow, then why do people use PiKVM? Or if I'm missing a step/am wrong in these steps, please let me know.

Thanks!

top 4 comments
sorted by: hot top controversial new old
[–] Stronknes@lemmy.world 0 points 1 year ago* (last edited 1 year ago) (1 children)

I dont use it myself, so some others can vouch for me here. The biggest reason to use PiKVM is to access your computer "physically". Internet down on server? KVM. Change settings in BIOS/UEFI? KVM.

I would also take a guess that you have misunderstood the requirements of VNC. The documentation states that you dont need VNC at all to make it function, but its an alternative to the web interface

[–] MigratingtoLemmy@lemmy.world 0 points 1 year ago (1 children)

Hi, thanks for your comment. I do realise that a KVM is a physical connection to the computer. I might not have worded it properly in my post, I'll edit that.

I was trying to ask about what exactly does the software stack in PiKVM do: and I think the selling point is likely the part of the software used to interact with the HDMI stream coming from the server. Am I correct in thinking that if I were to run the PiKVM software on my computer, get the HDMI capture from my server into my computer, and run a VNC client to access the PiKVM server which is being fed the capture stream, I will have, in essence, created a "DIY PiKVM"?

[–] zork@lemmy.ca 3 points 1 year ago* (last edited 1 year ago)

PiKVM is a collection of tools rolled into a distro to make keyboard/mouse input and attaching an emulated install media (virtual USB disk using ISO files) easily possible through a VNC-based web application. The idea is you can just build your own using the same software on different hardware, but it's aimed at using a raspberry pi for low power consumption, portability, and it has specific hardware compatibility with a HAT/addon board. The software can also make "reverse connections" through a remote NAT for support purposes, and you'd just port forward on your end. There are a lot of well thought out features in PiKVM (hardware) that make it much more convenient than building your own solution. You could install PiKVM on a different system than a Pi and try to make it work with your configuration.. You'd probably lose things like simulated power button press and virtual USB storage support. You might consider alternatives like PXE/netboot and wake-on-lan for those, but that might not always work for you.

(YMMV, I have not tried running PiKVM on an x86 cpu)