web-dev-qa-db-ja.com

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でもう機能しません:どうすればいいですか?

5
brad

新しい場所は次のようです:

/usr/share/X11/xorg.conf

それが役立つかどうかはわかりません。

5
ridale

これは私のために働いた。テレビを機能させるには、カスタムEDIDファイルを提供する必要がありました。 (アップグレードでxorg.confが削除されたため)古い14.04 xorg.confバックアップを取得し、関連する構成を/usr/share/X11/xorg.conf.d/に入れてから、すべてが再び正常に機能しました。

0
Mikael