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

相關內容