Ubuntu 9.04 + Nvidia FX 5200 PCI + Xorg = 不满意的配置

Ubuntu 9.04 + Nvidia FX 5200 PCI + Xorg = 不满意的配置

我有一台 Dell Dimension e510 电脑,带有板载显卡(已禁用)。我还有一块 Nvidia FX 5200 PCI 卡,是我事后安装的。我不得不进行一些搜索,才能在这台电脑上安装 Ubuntu 9.04(我认为是禁用 acpi)。现在我让它运行起来,机器正在使用 nvidia-glx-173 驱动程序。

我的配置可以自动检测三星显示器,但自动检测分辨率不正确。它将分辨率设置为 1600x1200,而它应该是 1920x1200。我需要将分辨率设置为 1920x1200。

我有 3 台机器通过 KVM(USB/DVI)交换机连接,我的另一台 Ubuntu 可以正确检测到显示器,我的 Windows 也可以正确检测到显示器。

我努力了:

  • 执行dpkg-reconfigure -phigh xserver-xorg
  • 运行nvidia-xconfig(将分辨率设置为 1024x768 或 1600x1200)
  • 使用 nvidia-glx-new 和 nvidia-glx-180
  • /etc/X11/xorg.conf在各种设置中手动配置。它们几乎总是被忽略。

我在网上看到 Ubuntu 存在 PCI 卡和板载显卡问题。我还看到 FX5200 存在特定问题,需要 nvidia-glx-173 驱动程序。所以看起来我在这台机器的配置上遇到了很多问题。

有人能建议我可以做些什么来解决这个问题吗?我几乎尝试了在 ubuntu 论坛上能找到的所有方法。


更新:我已直接连接显示器,但其行为没有任何变化。我还尝试升级到 nvidia-glx-180(再次),但仍然没有成功。


这是我现在 xorg.conf 中的内容。

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    DefaultDepth    24
EndSection

Section "Module"
    Load    "glx"
EndSection

Section "Device"
    Identifier  "Configured Video Device"
    Driver  "nvidia"
    Option  "NoLogo"    "True"
EndSection

答案1

这是一个关于设置自定义的博客文章如果司机拒绝合作,则做出决议。

答案2

在 1920x1200 的分辨率下,显卡将难以处理全屏视频,甚至可能无法拖动带有许多图标的窗口。

但是,如果你真的想设置它,你可以下载nvidia-settings 软件包并使用 GUI 控制面板进行设置。

如果您想手动设置,请更改/etc/X11/xorg.conf为:

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor             "Configured Monitor"
    Device              "Configured Video Device"
    DefaultDepth        24
    SubSection "Display"
        Depth   24
        Modes   "1920x1200"
    EndSubSecetion
EndSection

Section "Module"
    Load        "glx"
EndSection

Section "Device"
    Identifier  "Configured Video Device"
    Driver      "nvidia"
    Option      "NoLogo"        "True"
EndSection

不过,我能给你的最好建议是,如果主板有其中一个插槽,就购买功能更强大的 AGP 或 PCIe 显卡。

相关内容