xorg.conf 用于 Lucid Lynx 上与 Sony Bravia 的 VGA 连接

xorg.conf 用于 Lucid Lynx 上与 Sony Bravia 的 VGA 连接

这是我当前的xorg.conf文件内容:

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "CRT-0"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce4 MX 4000"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
EndSection

确实安装了nVidia的GeForce4 MX 4000,并且nVidia配置软件运行正常。

以下是完整案例:我之前使用的是另一台显示器,一切正常。然后,我将其换成了索尼 Bravia 电视(型号 KDL-32EX405)。之前的 xorg.conf 只给我一个黑屏,所以我备份了它,并且必须制作这个最小的 xorg.conf 文件,这样我才能以我现在的640 x 480分辨率使用它。这有点好笑:一个非常大的屏幕,分辨率却非常小……

无论如何,我不是 X Server 专家,所以我需要知道在 xorg.conf 中输入什么,以便我可以使用更好的分辨率。请记住:没有可用的 HDMI,只有 VGA 电缆。谢谢!

答案1

我发现了一个配置来自电子邮件列表的消息,这对我有用。现在我正在享受解决方案,与我之前陷入的困境1320 x 768相比,这简直是天堂。640 x 480

我只需要在监视器和屏幕部分添加几行。以下是它们的新版本:

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "CRT-0"
    Option          "IgnoreEDID" 
    VertRefresh     30-90 
    HorizSync       20-150 
    Modeline        "HDTV-1360x768" 85.500 1360 1424 1536 1792 768 771 777 795 +Hsync +Vsync
    DisplaySize     320 180
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth 24 
    SubSection "Display" 
        ViewPort 0 0 
        Depth       24 
        Modes "HDTV-1360x768"
    EndSubSection
EndSection

相关内容