如何在我的 LG Flatron W1941S 显示器上启用更高的分辨率(我正在运行 Fedora 9、KDE ​​4.2)?

如何在我的 LG Flatron W1941S 显示器上启用更高的分辨率(我正在运行 Fedora 9、KDE ​​4.2)?

我最近将显示器换成了 LG Flatron W1941S。(我说的“换”是指我刚拔掉旧显示器的电源,插上新显示器的电源。)

由于某种原因,我只能使用最大屏幕分辨率 1360 *768。

在另一台电脑上,同一台显示器可以轻松提供高达 1400 *900的分辨率

这是我的 /etc/X11/xorg.conf 文件(我在某处阅读教程后对其进行了更改):

# Xorg configuration created by system-config-display

Section "ServerLayout"
    Identifier     "single head configuration"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"

# keyboard added by rhpxl
    Identifier  "Keyboard0"
    Driver      "kbd"
    Option      "XkbModel" "pc105"
    Option      "XkbLayout" "us"
EndSection

Section "Monitor"
    Identifier   "Monitor0"
    ModelName    "LCD Panel 1440x900"
    Modeline     "1440x900_75.00"  136.49  1440 1536 1688 1936  900 901 904 940  -HSync +Vsync
    HorizSync    31.5 - 74.7
    VertRefresh  56.0 - 65.0
    Option      "dpms"
EndSection

Section "Device"
    Identifier  "Videocard0"
    Driver      "intel"
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Videocard0"
    Monitor    "Monitor0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes     "1440x900" "1280x1024" "1024x768"
    EndSubSection
EndSection

我需要安装任何驱动程序吗?我这里缺少什么?

答案1

您可以先升级到 Fedora 11。

此外,Xorg 的新版本在自动检测方面非常出色。注释掉 Modeline、HorizSync、VertRefresh 选项。重新启动 X 以查看它是否有效。

您可以备份 xorg.conf,然后将其全部删除。这样,有时效果会好得多 :)

警告如果您不能使用控制台来恢复不工作的 X,请不要在家里尝试这些,请与 Linux 专家(或连接到 IRC/超级用户的另一台计算机)一起尝试:D

答案2

升级几乎肯定会解决这个问题。计算机仍然使用旧显示器的驱动程序。系统设置中应该有一个选项可以更改显示器驱动程序。如果没有,您可能需要更改 xorg.conf。也许可以尝试以 root 身份运行 system-config-display,正如 xorg.conf 的第一行所示。

另外,您说显示器是 1400x900,这可能会导致 xorg.conf 出现问题,显示 1440x900。当然,我不知道这是否是问题所在。

相关内容