atng 发表于 2004-10-30 12:25:21

求助--显卡安装后怎么设才能进X?

我安装完NVIDIA驱动后,按照/usr/share/doc/NVIDIA_GLX-1.0/README在的说明,进入/etc/X11/XF86Config-4修改了相关配置,然后运行startx进入了图形界面。可是界面是很分辨率很低,结果进入属性,改为1024*768后,系统又返回了命令模式了。再运行startx, 出现下面的代码:
Undefined Device "nvidia"referenced by screen"scree0"
Problem parsing the config file
Error form xf86handleConfigFile()

Fatle server error:
no screen found 晕死了!再次进入XF86Config-4,显示器和显卡的相关代码如下:Section "Device"
Identifier"nvidia(0)"
Deriver "nvidia"
BoardName "Unknown"
EndSetion

Section "Screen"
Indenfier" Screen0"
Devide "nvidia"    //这是原来改的,初始值跟显卡的一样,都为VESA
Monitor "E70f-6"
Default Depth "Display"
   Depth24
Modes "1024*768"
EndSubSection
到底该怎么设,请帮忙下

dannycat 发表于 2004-10-30 16:07:05

我才晕~~

人家让你改 Device 段的 Driver 而已。
Section "Device"
      Identifier"MX440"
      Driver      "nvidia"    <-- 只改这个
      BoardName   "nVidia Geforce 4 MX440"
EndSection

Section "Screen"
      Identifier "Desktop"
      Device   "MX440"   <-- 这个跟你 Device 段里的“Identifier” 一致才行
      Monitor    "LG"
      DefaultDepth   16

      SubSection "Display"
                Viewport0 0
                Depth   16
                Modes   "1152x864" "1024x768" "800x600"
      EndSubSection

      SubSection "Display"
                Viewport0 0
                Depth   24
                Modes   "1152x864" "1024x768" "800x600"
      EndSubSection
EndSection

atng 发表于 2004-10-30 21:23:34

谢谢dannycat,终于可以进了,呵呵…………
页: [1]
查看完整版本: 求助--显卡安装后怎么设才能进X?