双显示器:使用 x11 转发的 ssh 上的 gnome-session - 设置分辨率以适合一台显示器
我在 Windows 7 上有两台不同分辨率的显示器(1440x900 和 1600x1200)。我通过 cygwin/x 和 x11 转发通过 ssh 连接到 Red Hat 计算机。
当我启动 gnome-session 来获取桌面环境时,它会在两个显示器上打开,窗口大小为 3040x1200。它的一部分没有显示在我的小显示器上。
$ startxwin &
$ ssh -Y redhat
[user@redhat ~]$ gnome-session
我无法通过拖动角落来更改窗口的大小。有没有办法强制分辨率使窗口仅适合其中一台显示器?
I have two monitors with different resolutions (1440x900 and 1600x1200) on Windows 7. I am connecting to a Red Hat machine via ssh through cygwin/x with x11 forwarding.
When I start a gnome-session to get the desktop environment, it opens over both monitors with a window size of 3040x1200. Part of it is not displayed on my smaller monitor.
$ startxwin &
$ ssh -Y redhat
[user@redhat ~]$ gnome-session
I am unable to change the size of the window by dragging the corners. Is there a way to force the resolution to make the window fit on just one of the monitors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终使用
startx
来代替,它启动一个单窗口 x 会话。这对于启动 gnome-session 并将其限制在单个监视器上要好得多。I ended up using
startx
instead, which starts a single-window x session. This is much better for launching gnome-session and confines it to a single monitor.