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/ 中,然後一切再次正常工作。

相關內容