如何修复teamviewer 中的四屏问题?

如何修复teamviewer 中的四屏问题?

当我连接到远程 Ubuntu 服务器(来自 Windows 7)时,我得到的只是一张四重截止图像,从远处看起来像是一个桌面环境:

在此处输入图片描述

我已经在 Google 上搜索过这个错误,但仍然没有答案,也不知道为什么会出现这个问题。我已经尝试了常见的解决方案,例如重启、重新安装、更新应用程序和系统、检查网络端口并关闭所有不重要的任务。

Ubuntu 版本是 12.04.4

有谁遇到过同样的问题和/或知道解决办法吗?

答案1

我遇到了同样的问题并在这里找到了解决方案:https://help.ubuntu.com/community/KVM/FAQ

您需要创建文件/usr/share/X11/xorg.conf.d/60-teamviewer-fix.conf内容:

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync       20.0 - 50.0
        VertRefresh     40.0 - 80.0
        Option          "DPMS"

EndSection

Section "Device"
        Identifier  "Card0"
        Driver      "vesa"
        VendorName  "KVM - std"
        BoardName   "GD 5446"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Modes "1600x1200"
        EndSubSection
EndSection

之后重新启动你的 Ubuntu 服务器,问题就解决了。

相关内容