一:认不了128M以上内存的问题。
修改/etc/X11/XF86Config文件的“Device”选项,增加一项:VideoRam MEM,以KB为单位。
二:安装了NVIDIA FX 3400驱动程序后,在显卡的硬件例表中找不到相应的设备。
修改/usr/share/hwdata/Cards文件,具体修改参照NVIDIA其它类型的语法。
三:配置双屏显示。
一共需要修改三项,例子如下:
1:
Section "ServerLayout"
Identifier "Anaconda Configured"
Screen 0 "Screen0"
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
2:
Section "Device"
Identifier "DISPLAY[0]"
Driver "nvidia"
VendorName "nVidia"
BoardName "nVidia Quadro FX3400"
screen 0
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "DISPLAY[1]"
Driver "nvidia"
VendorName "nVidia"
BoardName "nVidia Quadro FX3400"
screen 1
BusID "PCI:1:0:0"
EndSection
3:
Section "Screen"
Identifier "Screen0"
Device "DISPLAY[0]"
Monitor "Monitor0"
DefaultDepth 24
Option "BackingStore" "Yes"
Subsection "Display"
Depth 24
Modes "1600x1200" "1280x1024"
EndSubsection
EndSection
Section "Screen"
Identifier "Screen1"
Device "DISPLAY[1]"
Monitor "Monitor0"
DefaultDepth 24
Option "BackingStore" "Yes"
Subsection "Display"
Depth 24
Modes "1600x1200" "1280x1024"
EndSubsection
EndSection