我需要适用于 Matrox G400 的 Ubuntu 11.04 驱动程序。
我插入了视频卡,但屏幕上什么也没有出现,所以我猜测 Ubuntu 11.04 没有任何类型的驱动程序。
那么我是否必须先使用旧卡加载驱动程序?如果是,我该怎么做?
答案1
它能识别你的新卡吗
lspci | grep VGA
你跑过吗
sudo apt-get update; sudo apt-get upgrade
然后检查附加驱动程序?
答案2
答案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