-1

can somebody recommend me good affordable IP KVM? Like Adder. Or some articles evaluating such KVMs?

My project:

Provide remote support to Linux (Fedora) based software that runs on X, but without any window-manager. I know that there is Gnome vino, but it is buggy and it does not meet my needs for other reasons. I would prefer a hardware solution, although I am still willing to look into sw solutions too.

I have a similar project, where I need to support a DOS-based medical device.

In many cases it would be enough for the remote supporter to see the screen, they could guide the on-site person to type/mouse.

TIA, Radim

4

1 回答 1

0

我在没有本地鼠标/键盘/显示器的媒体中心上设置了 Xserver,因此我可以远程控制它。

诀窍是使用 X Virtual Framebuffer 和 X11vnc 服务器。

像这样的东西:

/usr/bin/xinit /home/dummyuser/.xinitrc -- /usr/bin/Xvfb :20 -screen 0 1200x720x16 +kb -cc 4 -nolisten tcp -deferglyphs

/usr/bin/x11vnc -display :20

并使用/home/dummyuser/.xinitrc

cd /home/dummyuser
umask 002
fluxbox & wmpid=$!
# here your startup programs
wait $wmpid

它使用了fluxbox,它是轻量级的窗口管理器。您也可以使用 openbox。如果没有必要,您可以删除窗口管理器。

然后,您可以使用任何 vnc 客户端连接到它,并打开终端、firefox 等。

于 2009-05-11T21:30:25.237 回答