需要 Matrox G400 的驱动程序

需要 Matrox G400 的驱动程序

我需要适用于 Matrox G400 的 Ubuntu 11.04 驱动程序。

我插入了视频卡,但屏幕上什么也没有出现,所以我猜测 Ubuntu 11.04 没有任何类型的驱动程序。

那么我是否必须先使用旧卡加载驱动程序?如果是,我该怎么做?

答案1

它能识别你的新卡吗

lspci | grep VGA

你跑过吗

sudo apt-get update; sudo apt-get upgrade

然后检查附加驱动程序?

答案2

入住Matrox 的驱动程序网站并且正如所料,他们忽略了传统的驱动程序。

你可以做两件事

  • 尝试使用 g450 系列之一,看看是否能解决问题。
  • 或者给主管部门发邮件询问,你需要一名老司机。

答案3

Matrox G400 应该有 x.org 提供的开源驱动程序。正确的驱动程序可能没有自动加载。一些较旧的英特尔图形芯片也会出现这种情况。

尝试将其放入 /etc/X11/xorg.conf

Section "Device"
    Identifier "Configured Video Device"
    Driver "mga"
EndSection

Section "Monitor"
    Identifier "Configured Monitor"
EndSection

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

相关内容