如何配置协同以使用多个 X11 屏幕(:0、:1、...)?

发布于 2024-07-07 00:52:11 字数 236 浏览 6 评论 0原文

为多台计算机配置协同(每台计算机都有一个屏幕)相当容易。 但如何配置多个 X11 屏幕并不是那么明显。 例如,sys1,右侧是一个 minimac。 sys1 是服务器,有一个监视器(屏幕)。 sys1 的左侧是一个 Fedora 9 系统 sys2,有两个 X11 显示器:sys2:0.0 和 sys2:0.1 我猜测有人发明了名称并使用指定端口的别名(在我的例子中为 5900 和 5901),这是我将调查的途径。 但肯定有人曾经走过这座桥。

Configuring synergy for multiple computers, each with a single screen, is fairly easy. But it is not so obvious how to configure multiple X11 screens. For example, sys1, a minimac is on the right. sys1 is the server and has a single monitor (screen). To the left of sys1 is a Fedora 9 system, sys2, with two X11 displays: sys2:0.0 and sys2:0.1 I'm guessing that one invents names and uses aliases with ports specified (5900 and 5901 in my case), which is the avenue I will investigate. But surely someone has crossed this bridge before.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天暗了我发光 2024-07-14 00:52:11

我在此处找到了基本答案。 这是此示例的配置文件:

section: screens
  sys1
  sys2
  sys21
end

section: links
  sys1:
    left = sys21
  sys2:
    left = sys2
    right = sys1
  sys21:
    right = sys21
end

基本上就是您所需要的。 然后,按如下方式启动协同程序:

在服务器 (sys1) 上:

$ synergys -f --config synergy.conf --name sys1

在客户端上,显示 :0.0

$ synergyc -f -n sys2 sys1

在客户端上,显示 :0.1

$ synergyc -f -n sys21 sys1

然后就可以了...

I found the basic answer here. Here is the config file for this example:

section: screens
  sys1
  sys2
  sys21
end

section: links
  sys1:
    left = sys21
  sys2:
    left = sys2
    right = sys1
  sys21:
    right = sys21
end

is basically all you need. Then, start the synergy programs as follows:

On the server (sys1):

$ synergys -f --config synergy.conf --name sys1

On the client, display :0.0

$ synergyc -f -n sys2 sys1

On the client, display :0.1

$ synergyc -f -n sys21 sys1

And away you go ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文