ubuntu 16.04 中的自定义 xorg.conf

bra*_*rad 5 xorg 16.04

不幸的是,我的显示器没有被 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
Run Code Online (Sandbox Code Playgroud)

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

小智 5

新位置似乎是:

/usr/share/X11/xorg.conf
Run Code Online (Sandbox Code Playgroud)

不知道这是否会有所帮助。