Ubuntu 16.04 中的自定义 xorg.conf

Ubuntu 16.04 中的自定义 xorg.conf

不幸的是,我的显示器无法被 Xorg 正确识别,而且从来没有被识别过,所以我在新安装后做的第一件事就是将我的自定义 xorg.conf 复制到目录中/etc/X11。它非常简单,看起来像

Section "Device"
    Identifier  "Configured Video Device"
EndSection

Section "Monitor"
    Identifier  "asus"
    Vendorname  "Asus"
    Modelname   "VW198S"
    Modeline    "1680x1050" 147.600 1680 1784 1968 2256 1050 1051 1054 1087 -hsync +vsync
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "asus"
    Device      "Configured Video Device"
    SubSection "Display"
       Depth    24
       Modes    "1680x1050"
    EndSubSection
 EndSection

这在 16.04 中不再起作用:我该怎么办?

答案1

新位置似乎是:

/usr/share/X11/xorg.conf

但不确定这是否有帮助。

答案2

这对我来说很管用。我需要提供一个自定义 EDID 文件才能让我的电视正常工作。我备份了旧的 14.04 xorg.conf(因为 xorg.conf 在升级时被删除了),将相关配置放入 /usr/share/X11/xorg.conf.d/,然后一切又恢复正常了。

相关内容