LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1156|回复: 13

高手们帮我看看我的xorg.conf吧。我的x启不来了

[复制链接]
发表于 2006-4-15 18:32:55 | 显示全部楼层 |阅读模式
我的显卡是geforce4 mx440的,nvidia驱动也装了。
如果用xorgcfg自动配置的话xwindow能起来,但是刷新率和分辨率识别的很糟糕。在用gnome的时候,下边的控制板已经显示到屏幕以外去了。
于是用xorgconfig生成的xorg.conf。但是xwindow 起不来了。
以下是我的xorg.conf和log文件。高手们帮我看看吧。
我记得在用debian的时候装上nvidia驱动后会有个叫nvidia-settings的工具,可以调节显示亮度对比度。gentoo上怎么没有啊?

xorg.conf
  1. # File generated by xorgconfig.

  2. #
  3. # Copyright 2004 The X.Org Foundation
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a
  6. # copy of this software and associated documentation files (the "Software"),
  7. # to deal in the Software without restriction, including without limitation
  8. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. # and/or sell copies of the Software, and to permit persons to whom the
  10. # Software is furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included in
  13. # all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  18. # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  19. # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
  20. # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. # SOFTWARE.
  22. #
  23. # Except as contained in this notice, the name of The X.Org Foundation shall
  24. # not be used in advertising or otherwise to promote the sale, use or other
  25. # dealings in this Software without prior written authorization from
  26. # The X.Org Foundation.
  27. #

  28. # **********************************************************************
  29. # Refer to the xorg.conf(5x) man page for details about the format of
  30. # this file.
  31. # **********************************************************************

  32. # **********************************************************************
  33. # Module section -- this  section  is used to specify
  34. # which dynamically loadable modules to load.
  35. # **********************************************************************
  36. #
  37. Section "Module"

  38. # This loads the DBE extension module.

  39.     Load        "dbe"          # Double buffer extension

  40. # This loads the miscellaneous extensions module, and disables
  41. # initialisation of the XFree86-DGA extension within that module.
  42.     SubSection  "extmod"
  43.       Option    "omit xfree86-dga"   # don't initialise the DGA extension
  44.     EndSubSection

  45. # This loads the font modules
  46.     Load        "type1"
  47. #    Load        "speedo"
  48.     Load        "freetype"
  49. #    Load        "xtt"

  50. # This loads the GLX module
  51. #    Load       "glx"
  52. # This loads the DRI module
  53. #    Load       "dri"

  54. EndSection

  55. # **********************************************************************
  56. # Files section.  This allows default font and rgb paths to be set
  57. # **********************************************************************

  58. Section "Files"

  59. # The location of the RGB database.  Note, this is the name of the
  60. # file minus the extension (like ".txt" or ".db").  There is normally
  61. # no need to change the default.

  62.     RgbPath        "/usr/X11R6/lib/X11/rgb"

  63. # Multiple FontPath entries are allowed (which are concatenated together),
  64. # as well as specifying multiple comma-separated entries in one FontPath
  65. # command (or a combination of both methods)
  66. #
  67. #

  68.     FontPath   "/usr/share/fonts/misc/"
  69.     FontPath   "/usr/share/fonts/TTF/"
  70.     FontPath   "/usr/share/fonts/Type1/"
  71. #    FontPath   "/usr/share/fonts/CID/"
  72.     FontPath   "/usr/share/fonts/75dpi/"
  73.     FontPath   "/usr/share/fonts/100dpi/"
  74.     FontPath   "/usr/share/fonts/local/"
  75. #    FontPath   "/usr/share/fonts/Speedo/"
  76. #    FontPath   "/usr/share/fonts/TrueType/"
  77. #    FontPath   "/usr/share/fonts/freefont/"

  78. # The module search path.  The default path is shown here.

  79. #    ModulePath "/usr/X11R6/lib/modules"

  80. EndSection

  81. # **********************************************************************
  82. # Server flags section.
  83. # **********************************************************************

  84. Section "ServerFlags"

  85. # Uncomment this to cause a core dump at the spot where a signal is
  86. # received.  This may leave the console in an unusable state, but may
  87. # provide a better stack trace in the core dump to aid in debugging

  88. #    Option "NoTrapSignals"

  89. # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
  90. # (where n is 1 through 12).  This allows clients to receive these key
  91. # events.

  92. #    Option "DontVTSwitch"

  93. # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
  94. # This allows clients to receive this key event.

  95. #    Option "DontZap"

  96. # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
  97. # sequences.  This allows clients to receive these key events.

  98. #    Option "Dont Zoom"

  99. # Uncomment this to disable tuning with the xvidtune client. With
  100. # it the client can still run and fetch card and monitor attributes,
  101. # but it will not be allowed to change them. If it tries it will
  102. # receive a protocol error.

  103. #    Option "DisableVidModeExtension"

  104. # Uncomment this to enable the use of a non-local xvidtune client.

  105. #    Option "AllowNonLocalXvidtune"

  106. # Uncomment this to disable dynamically modifying the input device
  107. # (mouse and keyboard) settings.

  108. #    Option "DisableModInDev"

  109. # Uncomment this to enable the use of a non-local client to
  110. # change the keyboard or mouse settings (currently only xset).

  111. #    Option "AllowNonLocalModInDev"

  112. EndSection

  113. # **********************************************************************
  114. # Input devices
  115. # **********************************************************************

  116. # **********************************************************************
  117. # Core keyboard's InputDevice section
  118. # **********************************************************************

  119. Section "InputDevice"

  120.     Identifier        "Keyboard1"
  121.     Driver        "kbd"

  122. # For most OSs the protocol can be omitted (it defaults to "Standard").
  123. # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
  124. # uncomment the following line.

  125. #    Option     "Protocol"      "Xqueue"

  126.     Option "AutoRepeat" "500 30"

  127. # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
  128. #    Option        "Xleds"      "1 2 3"

  129. #    Option "LeftAlt"     "Meta"
  130. #    Option "RightAlt"    "ModeShift"

  131. # To customise the XKB settings to suit your keyboard, modify the
  132. # lines below (which are the defaults).  For example, for a non-U.S.
  133. # keyboard, you will probably want to use:
  134. #    Option "XkbModel"    "pc105"
  135. # If you have a US Microsoft Natural keyboard, you can use:
  136. #    Option "XkbModel"    "microsoft"
  137. #
  138. # Then to change the language, change the Layout setting.
  139. # For example, a german layout can be obtained with:
  140. #    Option "XkbLayout"   "de"
  141. # or:
  142. #    Option "XkbLayout"   "de"
  143. #    Option "XkbVariant"  "nodeadkeys"
  144. #
  145. # If you'd like to switch the positions of your capslock and
  146. # control keys, use:
  147. #    Option "XkbOptions"  "ctrl:swapcaps"

  148. # These are the default XKB settings for Xorg
  149. #    Option "XkbRules"    "xorg"
  150. #    Option "XkbModel"    "pc105"
  151. #    Option "XkbLayout"   "us"
  152. #    Option "XkbVariant"  ""
  153. #    Option "XkbOptions"  ""

  154. #    Option "XkbDisable"

  155.     Option "XkbRules"        "xorg"
  156.     Option "XkbModel"        "pc104"
  157.     Option "XkbLayout"        "us"

  158. EndSection


  159. # **********************************************************************
  160. # Core Pointer's InputDevice section
  161. # **********************************************************************

  162. Section "InputDevice"

  163. # Identifier and driver

  164.     Identifier        "Mouse1"
  165.     Driver        "mouse"
  166.     Option "Protocol"    "Auto"
  167.     Option "Device"      "/dev/psaux"

  168. # Mouse-speed setting for PS/2 mouse.

  169. #    Option "Resolution"        "256"

  170. # When using XQUEUE, comment out the above two lines, and uncomment
  171. # the following line.

  172. #    Option "Protocol"        "Xqueue"

  173. # Baudrate and SampleRate are only for some Logitech mice. In
  174. # almost every case these lines should be omitted.

  175. #    Option "BaudRate"        "9600"
  176. #    Option "SampleRate"        "150"

  177. # Emulate3Buttons is an option for 2-button Microsoft mice
  178. # Emulate3Timeout is the timeout in milliseconds (default is 50ms)

  179. #    Option "Emulate3Buttons"
  180. #    Option "Emulate3Timeout"    "50"

  181. # ChordMiddle is an option for some 3-button Logitech mice

  182. #    Option "ChordMiddle"

  183. EndSection


  184. # **********************************************************************
  185. # Other input device sections
  186. # this is optional and is required only if you
  187. # are using extended input devices.  This is for example only.  Refer
  188. # to the xorg.conf man page for a description of the options.
  189. # **********************************************************************
  190. #
  191. # Section "InputDevice"
  192. #    Identifier  "Mouse2"
  193. #    Driver      "mouse"
  194. #    Option      "Protocol"      "MouseMan"
  195. #    Option      "Device"        "/dev/mouse2"
  196. # EndSection
  197. #
  198. # Section "InputDevice"
  199. #    Identifier "spaceball"
  200. #    Driver     "magellan"
  201. #    Option     "Device"        "/dev/cua0"
  202. # EndSection
  203. #
  204. # Section "InputDevice"
  205. #    Identifier "spaceball2"
  206. #    Driver     "spaceorb"
  207. #    Option     "Device"        "/dev/cua0"
  208. # EndSection
  209. #
  210. # Section "InputDevice"
  211. #    Identifier "touchscreen0"
  212. #    Driver     "microtouch"
  213. #    Option     "Device"        "/dev/ttyS0"
  214. #    Option     "MinX"          "1412"
  215. #    Option     "MaxX"          "15184"
  216. #    Option     "MinY"          "15372"
  217. #    Option     "MaxY"          "1230"
  218. #    Option     "ScreenNumber"  "0"
  219. #    Option     "ReportingMode" "Scaled"
  220. #    Option     "ButtonNumber"  "1"
  221. #    Option     "SendCoreEvents"
  222. # EndSection
  223. #
  224. # Section "InputDevice"
  225. #    Identifier "touchscreen1"
  226. #    Driver     "elo2300"
  227. #    Option     "Device"        "/dev/ttyS0"
  228. #    Option     "MinX"          "231"
  229. #    Option     "MaxX"          "3868"
  230. #    Option     "MinY"          "3858"
  231. #    Option     "MaxY"          "272"
  232. #    Option     "ScreenNumber"  "0"
  233. #    Option     "ReportingMode" "Scaled"
  234. #    Option     "ButtonThreshold"       "17"
  235. #    Option     "ButtonNumber"  "1"
  236. #    Option     "SendCoreEvents"
  237. # EndSection

  238. # **********************************************************************
  239. # Monitor section
  240. # **********************************************************************

  241. # Any number of monitor sections may be present

  242. Section "Monitor"

  243.     Identifier  "VG712"

  244. # HorizSync is in kHz unless units are specified.
  245. # HorizSync may be a comma separated list of discrete values, or a
  246. # comma separated list of ranges of values.
  247. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
  248. # USER MANUAL FOR THE CORRECT NUMBERS.

  249.     HorizSync   31.5 - 79.0

  250. #    HorizSync        30-64         # multisync
  251. #    HorizSync        31.5, 35.2    # multiple fixed sync frequencies
  252. #    HorizSync        15-25, 30-50  # multiple ranges of sync frequencies

  253. # VertRefresh is in Hz unless units are specified.
  254. # VertRefresh may be a comma separated list of discrete values, or a
  255. # comma separated list of ranges of values.
  256. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
  257. # USER MANUAL FOR THE CORRECT NUMBERS.

  258.     VertRefresh 50-90

  259. EndSection


  260. # **********************************************************************
  261. # Graphics device section
  262. # **********************************************************************

  263. # Any number of graphics device sections may be present

  264. # Standard VGA Device:


  265. # The chipset line is optional in most cases.  It can be used to override
  266. # the driver's chipset detection, and should not normally be specified.

  267. #    Chipset        "generic"

  268. # The Driver line must be present.  When using run-time loadable driver
  269. # modules, this line instructs the server to load the specified driver
  270. # module.  Even when not using loadable driver modules, this line
  271. # indicates which driver should interpret the information in this section.

  272. # The BusID line is used to specify which of possibly multiple devices
  273. # this section is intended for.  When this line isn't present, a device
  274. # section can only match up with the primary video device.  For PCI
  275. # devices a line like the following could be used.  This line should not
  276. # normally be included unless there is more than one video device
  277. # intalled.

  278. #    BusID      "PCI:0:10:0"

  279. #    VideoRam        256

  280. #    Clocks        25.2 28.3


  281. # Device configured by xorgconfig:

  282. Section "Device"
  283.     Identifier  "geforce 4 mx440"
  284.     Driver      "nvidia"
  285.         # unsupported card
  286.     #VideoRam    65536
  287.     # Insert Clocks lines here if appropriate
  288. EndSection


  289. # **********************************************************************
  290. # Screen sections
  291. # **********************************************************************

  292. # Any number of screen sections may be present.  Each describes
  293. # the configuration of a single screen.  A single specific screen section
  294. # may be specified from the X server command line with the "-screen"
  295. # option.
  296. Section "Screen"
  297.     Identifier  "Screen 1"
  298.     Device      "geforce 4 mx440"
  299.     Monitor     "VG712"
  300.     DefaultDepth 16

  301.     Subsection "Display"
  302.         Depth       8
  303.         Modes       "1280x1024" "1024x768" "800x600" "640x480"
  304.         ViewPort    0 0
  305.     EndSubsection
  306.     Subsection "Display"
  307.         Depth       16
  308.         Modes       "1280x1024" "1024x768" "800x600" "640x480"
  309.         ViewPort    0 0
  310.     EndSubsection
  311.     Subsection "Display"
  312.         Depth       24
  313.         Modes       "1280x1024" "1024x768" "800x600" "640x480"
  314.         ViewPort    0 0
  315.     EndSubsection
  316. EndSection

  317. # **********************************************************************
  318. # ServerLayout sections.
  319. # **********************************************************************

  320. # Any number of ServerLayout sections may be present.  Each describes
  321. # the way multiple screens are organised.  A specific ServerLayout
  322. # section may be specified from the X server command line with the
  323. # "-layout" option.  In the absence of this, the first section is used.
  324. # When now ServerLayout section is present, the first Screen section
  325. # is used alone.

  326. Section "ServerLayout"

  327. # The Identifier line must be present
  328.     Identifier  "Simple Layout"

  329. # Each Screen line specifies a Screen section name, and optionally
  330. # the relative position of other screens.  The four names after
  331. # primary screen name are the screens to the top, bottom, left and right
  332. # of the primary screen.  In this example, screen 2 is located to the
  333. # right of screen 1.

  334.     Screen "Screen 1"

  335. # Each InputDevice line specifies an InputDevice section name and
  336. # optionally some options to specify the way the device is to be
  337. # used.  Those options include "CorePointer", "CoreKeyboard" and
  338. # "SendCoreEvents".

  339.     InputDevice "Mouse1" "CorePointer"
  340.     InputDevice "Keyboard1" "CoreKeyboard"

  341. EndSection

  342. # Section "DRI"
  343. #    Mode 0666
  344. # EndSection

复制代码

xorg.0.log
  1. X Window System Version 6.8.2
  2. Release Date: 9 February 2005
  3. X Protocol Version 11, Revision 0, Release 6.8.2
  4. Build Operating System: Linux 2.6.15-gentoo-r1 i686 [ELF]
  5. Current Operating System: Linux zhangcs 2.6.15-gentoo-r1 #3 SMP PREEMPT Sun Mar 26 23:20:29 Local time zone must be set-- i686
  6. Build Date: 28 March 2006
  7.         Before reporting problems, check http://wiki.X.Org
  8.         to make sure that you have the latest version.
  9. Module Loader present
  10. Markers: (--) probed, (**) from config file, (==) default setting,
  11.         (++) from command line, (!!) notice, (II) informational,
  12.         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
  13. (==) Log file: "/var/log/Xorg.0.log", Time: Sat Apr 15 17:36:30 2006
  14. (==) Using config file: "/etc/X11/xorg.conf"
  15. (==) ServerLayout "Simple Layout"
  16. (**) |-->Screen "Screen 1" (0)
  17. (**) |   |-->Monitor "VG712"
  18. (**) |   |-->Device "geforce 4 mx440"
  19. (**) |-->Input Device "Mouse1"
  20. (**) |-->Input Device "Keyboard1"
  21. (**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/,/usr/share/fonts/local/"
  22. (**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
  23. (==) ModulePath set to "/usr/lib/modules"
  24. (WW) Open APM failed (/dev/apm_bios) (No such file or directory)
  25. (II) Module ABI versions:
  26.         X.Org ANSI C Emulation: 0.2
  27.         X.Org Video Driver: 0.7
  28.         X.Org XInput driver : 0.4
  29.         X.Org Server Extension : 0.2
  30.         X.Org Font Renderer : 0.4
  31. (II) Loader running on linux
  32. (II) LoadModule: "bitmap"
  33. (II) Loading /usr/lib/modules/fonts/libbitmap.a
  34. (II) Module bitmap: vendor="X.Org Foundation"
  35.         compiled for 6.8.2, module version = 1.0.0
  36.         Module class: X.Org Font Renderer
  37.         ABI class: X.Org Font Renderer, version 0.4
  38. (II) Loading font Bitmap
  39. (II) LoadModule: "pcidata"
  40. (II) Loading /usr/lib/modules/libpcidata.a
  41. (II) Module pcidata: vendor="X.Org Foundation"
  42.         compiled for 6.8.2, module version = 1.0.0
  43.         ABI class: X.Org Video Driver, version 0.7
  44. Using vt 7
  45. (--) using VT number 7

  46. (II) PCI: PCI scan (all values are in hex)
  47. (II) PCI: 00:00:0: chip 10de,01e0 card 0000,0000 rev c1 class 06,00,00 hdr 80
  48. (II) PCI: 00:00:1: chip 10de,01eb card 10de,0c17 rev c1 class 05,00,00 hdr 80
  49. (II) PCI: 00:00:2: chip 10de,01ee card 10de,0c17 rev c1 class 05,00,00 hdr 80
  50. (II) PCI: 00:00:3: chip 10de,01ed card 10de,0c17 rev c1 class 05,00,00 hdr 80
  51. (II) PCI: 00:00:4: chip 10de,01ec card 10de,0c17 rev c1 class 05,00,00 hdr 80
  52. (II) PCI: 00:00:5: chip 10de,01ef card 10de,0c17 rev c1 class 05,00,00 hdr 80
  53. (II) PCI: 00:01:0: chip 10de,0060 card 10de,0c11 rev a4 class 06,01,00 hdr 80
  54. (II) PCI: 00:01:1: chip 10de,0064 card 10de,0c11 rev a2 class 0c,05,00 hdr 80
  55. (II) PCI: 00:02:0: chip 10de,0067 card 10de,0c11 rev a4 class 0c,03,10 hdr 80
  56. (II) PCI: 00:02:1: chip 10de,0067 card 10de,0c11 rev a4 class 0c,03,10 hdr 80
  57. (II) PCI: 00:02:2: chip 10de,0068 card 10de,0c11 rev a4 class 0c,03,20 hdr 80
  58. (II) PCI: 00:06:0: chip 10de,006a card 10de,4144 rev a1 class 04,01,00 hdr 00
  59. (II) PCI: 00:08:0: chip 10de,006c card 0000,0000 rev a3 class 06,04,00 hdr 01
  60. (II) PCI: 00:09:0: chip 10de,0065 card 10de,05b2 rev a2 class 01,01,8a hdr 00
  61. (II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev c1 class 06,04,00 hdr 01
  62. (II) PCI: 01:05:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
  63. (II) PCI: 01:07:0: chip 1131,7130 card 1131,2304 rev 01 class 04,80,00 hdr 00
  64. (II) PCI: 02:00:0: chip 10de,0181 card 0000,0000 rev a2 class 03,00,00 hdr 00
  65. (II) PCI: End of PCI scan
  66. (II) Host-to-PCI bridge:
  67. (II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
  68. (II) Bus 0 I/O range:
  69.         [0] -1        0        0x00000000 - 0x0000ffff (0x10000) IX[b]
  70. (II) Bus 0 non-prefetchable memory range:
  71.         [0] -1        0        0x00000000 - 0xffffffff (0x0) MX[b]
  72. (II) Bus 0 prefetchable memory range:
  73.         [0] -1        0        0x00000000 - 0xffffffff (0x0) MX[b]
  74. (II) PCI-to-ISA bridge:
  75. (II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
  76. (II) PCI-to-PCI bridge:
  77. (II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x0202 (VGA_EN is cleared)
  78. (II) Bus 1 I/O range:
  79.         [0] -1        0        0x0000c000 - 0x0000cfff (0x1000) IX[b]
  80. (II) Bus 1 non-prefetchable memory range:
  81.         [0] -1        0        0xde000000 - 0xdfffffff (0x2000000) MX[b]
  82. (II) Bus 1 prefetchable memory range:
  83.         [0] -1        0        0x30000000 - 0x300fffff (0x100000) MX[b]
  84. (II) PCI-to-PCI bridge:
  85. (II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x000a (VGA_EN is set)
  86. (II) Bus 2 non-prefetchable memory range:
  87.         [0] -1        0        0xdc000000 - 0xddffffff (0x2000000) MX[b]
  88. (II) Bus 2 prefetchable memory range:
  89.         [0] -1        0        0xd0000000 - 0xd7ffffff (0x8000000) MX[b]
  90. (--) PCI:*(2:0:0) nVidia Corporation NV18 [GeForce4 MX 440 AGP 8x] rev 162, Mem @ 0xdc000000/24, 0xd0000000/27
  91. (II) Addressable bus resource ranges are
  92.         [0] -1        0        0x00000000 - 0xffffffff (0x0) MX[b]
  93.         [1] -1        0        0x00000000 - 0x0000ffff (0x10000) IX[b]
  94. (II) OS-reported resource ranges:
  95.         [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[b](B)
  96.         [1] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
  97.         [2] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[b]
  98.         [3] -1        0        0x000c0000 - 0x000effff (0x30000) MX[b]
  99.         [4] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[b]
  100.         [5] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[b]
  101.         [6] -1        0        0x00000000 - 0x000000ff (0x100) IX[b]
  102. (II) PCI Memory resource overlap reduced 0xd8000000 from 0xdbffffff to 0xd7ffffff
  103. (II) Active PCI resource ranges:
  104.         [0] -1        0        0xdf001000 - 0xdf0013ff (0x400) MX[b]
  105.         [1] -1        0        0xdf000000 - 0xdf0000ff (0x100) MX[b]
  106.         [2] -1        0        0xe0000000 - 0xe0000fff (0x1000) MX[b]
  107.         [3] -1        0        0xe0004000 - 0xe00040ff (0x100) MX[b]
  108.         [4] -1        0        0xe0003000 - 0xe0003fff (0x1000) MX[b]
  109.         [5] -1        0        0xe0002000 - 0xe0002fff (0x1000) MX[b]
  110.         [6] -1        0        0xd8000000 - 0xd7ffffff (0x0) MX[b]O
  111.         [7] -1        0        0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
  112.         [8] -1        0        0xdc000000 - 0xdcffffff (0x1000000) MX[b](B)
  113.         [9] -1        0        0x0000c000 - 0x0000c0ff (0x100) IX[b]
  114.         [10] -1        0        0x0000f000 - 0x0000f00f (0x10) IX[b]
  115.         [11] -1        0        0x0000d400 - 0x0000d47f (0x80) IX[b]
  116.         [12] -1        0        0x0000d000 - 0x0000d0ff (0x100) IX[b]
  117.         [13] -1        0        0x0000e000 - 0x0000e01f (0x20) IX[b]
  118. (II) Active PCI resource ranges after removing overlaps:
  119.         [0] -1        0        0xdf001000 - 0xdf0013ff (0x400) MX[b]
  120.         [1] -1        0        0xdf000000 - 0xdf0000ff (0x100) MX[b]
  121.         [2] -1        0        0xe0000000 - 0xe0000fff (0x1000) MX[b]
  122.         [3] -1        0        0xe0004000 - 0xe00040ff (0x100) MX[b]
  123.         [4] -1        0        0xe0003000 - 0xe0003fff (0x1000) MX[b]
  124.         [5] -1        0        0xe0002000 - 0xe0002fff (0x1000) MX[b]
  125.         [6] -1        0        0xd8000000 - 0xd7ffffff (0x0) MX[b]O
  126.         [7] -1        0        0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
  127.         [8] -1        0        0xdc000000 - 0xdcffffff (0x1000000) MX[b](B)
  128.         [9] -1        0        0x0000c000 - 0x0000c0ff (0x100) IX[b]
  129.         [10] -1        0        0x0000f000 - 0x0000f00f (0x10) IX[b]
  130.         [11] -1        0        0x0000d400 - 0x0000d47f (0x80) IX[b]
  131.         [12] -1        0        0x0000d000 - 0x0000d0ff (0x100) IX[b]
  132.         [13] -1        0        0x0000e000 - 0x0000e01f (0x20) IX[b]
  133. (II) OS-reported resource ranges after removing overlaps with PCI:
  134.         [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[b](B)
  135.         [1] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
  136.         [2] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[b]
  137.         [3] -1        0        0x000c0000 - 0x000effff (0x30000) MX[b]
  138.         [4] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[b]
  139.         [5] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[b]
  140.         [6] -1        0        0x00000000 - 0x000000ff (0x100) IX[b]
  141. (II) All system resource ranges:
  142.         [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[b](B)
  143.         [1] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
  144.         [2] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[b]
  145.         [3] -1        0        0x000c0000 - 0x000effff (0x30000) MX[b]
  146.         [4] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[b]
  147.         [5] -1        0        0xdf001000 - 0xdf0013ff (0x400) MX[b]
  148.         [6] -1        0        0xdf000000 - 0xdf0000ff (0x100) MX[b]
  149.         [7] -1        0        0xe0000000 - 0xe0000fff (0x1000) MX[b]
  150.         [8] -1        0        0xe0004000 - 0xe00040ff (0x100) MX[b]
  151.         [9] -1        0        0xe0003000 - 0xe0003fff (0x1000) MX[b]
  152.         [10] -1        0        0xe0002000 - 0xe0002fff (0x1000) MX[b]
  153.         [11] -1        0        0xd8000000 - 0xd7ffffff (0x0) MX[b]O
  154.         [12] -1        0        0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
  155.         [13] -1        0        0xdc000000 - 0xdcffffff (0x1000000) MX[b](B)
  156.         [14] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[b]
  157.         [15] -1        0        0x00000000 - 0x000000ff (0x100) IX[b]
  158.         [16] -1        0        0x0000c000 - 0x0000c0ff (0x100) IX[b]
  159.         [17] -1        0        0x0000f000 - 0x0000f00f (0x10) IX[b]
  160.         [18] -1        0        0x0000d400 - 0x0000d47f (0x80) IX[b]
  161.         [19] -1        0        0x0000d000 - 0x0000d0ff (0x100) IX[b]
  162.         [20] -1        0        0x0000e000 - 0x0000e01f (0x20) IX[b]
  163. (II) LoadModule: "dbe"
  164. (II) Loading /usr/lib/modules/extensions/libdbe.a
  165. (II) Module dbe: vendor="X.Org Foundation"
  166.         compiled for 6.8.2, module version = 1.0.0
  167.         Module class: X.Org Server Extension
  168.         ABI class: X.Org Server Extension, version 0.2
  169. (II) Loading extension DOUBLE-BUFFER
  170. (II) LoadModule: "extmod"
  171. (II) Loading /usr/lib/modules/extensions/libextmod.a
  172. (II) Module extmod: vendor="X.Org Foundation"
  173.         compiled for 6.8.2, module version = 1.0.0
  174.         Module class: X.Org Server Extension
  175.         ABI class: X.Org Server Extension, version 0.2
  176. (II) Loading extension SHAPE
  177. (II) Loading extension MIT-SUNDRY-NONSTANDARD
  178. (II) Loading extension BIG-REQUESTS
  179. (II) Loading extension SYNC
  180. (II) Loading extension MIT-SCREEN-SAVER
  181. (II) Loading extension XC-MISC
  182. (II) Loading extension XFree86-VidModeExtension
  183. (II) Loading extension XFree86-Misc
  184. (II) Loading extension DPMS
  185. (II) Loading extension TOG-CUP
  186. (II) Loading extension Extended-Visual-Information
  187. (II) Loading extension XVideo
  188. (II) Loading extension XVideo-MotionCompensation
  189. (II) Loading extension X-Resource
  190. (II) LoadModule: "type1"
  191. (II) Loading /usr/lib/modules/fonts/libtype1.a
  192. (II) Module type1: vendor="X.Org Foundation"
  193.         compiled for 6.8.2, module version = 1.0.2
  194.         Module class: X.Org Font Renderer
  195.         ABI class: X.Org Font Renderer, version 0.4
  196. (II) Loading font Type1
  197. (II) Loading font CID
  198. (II) LoadModule: "freetype"
  199. (II) Loading /usr/lib/modules/fonts/libfreetype.so
  200. (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
  201.         compiled for 6.8.2, module version = 2.1.0
  202.         Module class: X.Org Font Renderer
  203.         ABI class: X.Org Font Renderer, version 0.4
  204. (II) Loading font FreeType
  205. (II) LoadModule: "nvidia"
  206. (II) Loading /usr/lib/modules/drivers/nvidia_drv.o
  207. (II) Module nvidia: vendor="NVIDIA Corporation"
  208.         compiled for 4.0.2, module version = 1.0.6629
  209.         Module class: XFree86 Video Driver
  210. (II) LoadModule: "mouse"
  211. (II) Loading /usr/lib/modules/input/mouse_drv.o
  212. (II) Module mouse: vendor="X.Org Foundation"
  213.         compiled for 6.8.2, module version = 1.0.0
  214.         Module class: X.Org XInput Driver
  215.         ABI class: X.Org XInput driver, version 0.4
  216. (II) LoadModule: "kbd"
  217. (II) Loading /usr/lib/modules/input/kbd_drv.o
  218. (II) Module kbd: vendor="X.Org Foundation"
  219.         compiled for 6.8.2, module version = 1.0.0
  220.         Module class: X.Org XInput Driver
  221.         ABI class: X.Org XInput driver, version 0.4
  222. (II) NVIDIA X Driver  1.0-6629  Wed Nov  3 13:14:07 PST 2004
  223. (II) NVIDIA Unified Driver for all NVIDIA GPUs
  224. (II) Primary Device is: PCI 02:00:0
  225. (--) Assigning device section with no busID to primary device
  226. (--) Chipset NVIDIA GPU found
  227. (II) resource ranges after xf86ClaimFixedResources() call:
  228.         [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[b](B)
  229.         [1] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
  230.         [2] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[b]
  231.         [3] -1        0        0x000c0000 - 0x000effff (0x30000) MX[b]
  232.         [4] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[b]
  233.         [5] -1        0        0xdf001000 - 0xdf0013ff (0x400) MX[b]
  234.         [6] -1        0        0xdf000000 - 0xdf0000ff (0x100) MX[b]
  235.         [7] -1        0        0xe0000000 - 0xe0000fff (0x1000) MX[b]
  236.         [8] -1        0        0xe0004000 - 0xe00040ff (0x100) MX[b]
  237.         [9] -1        0        0xe0003000 - 0xe0003fff (0x1000) MX[b]
  238.         [10] -1        0        0xe0002000 - 0xe0002fff (0x1000) MX[b]
  239.         [11] -1        0        0xd8000000 - 0xd7ffffff (0x0) MX[b]O
  240.         [12] -1        0        0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
  241.         [13] -1        0        0xdc000000 - 0xdcffffff (0x1000000) MX[b](B)
  242.         [14] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[b]
  243.         [15] -1        0        0x00000000 - 0x000000ff (0x100) IX[b]
  244.         [16] -1        0        0x0000c000 - 0x0000c0ff (0x100) IX[b]
  245.         [17] -1        0        0x0000f000 - 0x0000f00f (0x10) IX[b]
  246.         [18] -1        0        0x0000d400 - 0x0000d47f (0x80) IX[b]
  247.         [19] -1        0        0x0000d000 - 0x0000d0ff (0x100) IX[b]
  248.         [20] -1        0        0x0000e000 - 0x0000e01f (0x20) IX[b]
  249. (II) resource ranges after probing:
  250.         [0] -1        0        0xffe00000 - 0xffffffff (0x200000) MX[b](B)
  251.         [1] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
  252.         [2] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[b]
  253.         [3] -1        0        0x000c0000 - 0x000effff (0x30000) MX[b]
  254.         [4] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[b]
  255.         [5] -1        0        0xdf001000 - 0xdf0013ff (0x400) MX[b]
  256.         [6] -1        0        0xdf000000 - 0xdf0000ff (0x100) MX[b]
  257.         [7] -1        0        0xe0000000 - 0xe0000fff (0x1000) MX[b]
  258.         [8] -1        0        0xe0004000 - 0xe00040ff (0x100) MX[b]
  259.         [9] -1        0        0xe0003000 - 0xe0003fff (0x1000) MX[b]
  260.         [10] -1        0        0xe0002000 - 0xe0002fff (0x1000) MX[b]
  261.         [11] -1        0        0xd8000000 - 0xd7ffffff (0x0) MX[b]O
  262.         [12] -1        0        0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
  263.         [13] -1        0        0xdc000000 - 0xdcffffff (0x1000000) MX[b](B)
  264.         [14] 0        0        0x000a0000 - 0x000affff (0x10000) MS[b]
  265.         [15] 0        0        0x000b0000 - 0x000b7fff (0x8000) MS[b]
  266.         [16] 0        0        0x000b8000 - 0x000bffff (0x8000) MS[b]
  267.         [17] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[b]
  268.         [18] -1        0        0x00000000 - 0x000000ff (0x100) IX[b]
  269.         [19] -1        0        0x0000c000 - 0x0000c0ff (0x100) IX[b]
  270.         [20] -1        0        0x0000f000 - 0x0000f00f (0x10) IX[b]
  271.         [21] -1        0        0x0000d400 - 0x0000d47f (0x80) IX[b]
  272.         [22] -1        0        0x0000d000 - 0x0000d0ff (0x100) IX[b]
  273.         [23] -1        0        0x0000e000 - 0x0000e01f (0x20) IX[b]
  274.         [24] 0        0        0x000003b0 - 0x000003bb (0xc) IS[b]
  275.         [25] 0        0        0x000003c0 - 0x000003df (0x20) IS[b]
  276. (II) Setting vga for screen 0.
  277. (**) NVIDIA(0): Depth 16, (--) framebuffer bpp 16
  278. (==) NVIDIA(0): RGB weight 565
  279. (==) NVIDIA(0): Default visual is TrueColor
  280. (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
  281. (--) NVIDIA(0): Linear framebuffer at 0xD0000000
  282. (--) NVIDIA(0): MMIO registers at 0xDC000000
  283. (EE) NVIDIA(0): Failed to initialize the NVIDIA kernel module!
  284. (EE) NVIDIA(0):  *** Aborting ***
  285. (II) UnloadModule: "nvidia"
  286. (EE) Screen(s) found, but none have a usable configuration.

  287. Fatal server error:
  288. no screens found

  289. Please consult the The X.Org Foundation support
  290.          at http://wiki.X.Org
  291. for help.
  292. Please also check the log file at "/var/log/Xorg.0.log" for additional information.

复制代码
发表于 2006-4-15 19:17:29 | 显示全部楼层

  1. Subsection "Display"
  2.         Depth       16
  3.         Modes       "1280x1024" "1024x768" "800x600" "640x480"
  4.         ViewPort    0 0
  5.     EndSubsection
复制代码


把前面的1280X1024去掉
回复 支持 反对

使用道具 举报

发表于 2006-4-15 20:31:55 | 显示全部楼层
楼主要做的是:
emerge nvidia-kernel
回复 支持 反对

使用道具 举报

发表于 2006-4-15 20:32:26 | 显示全部楼层
楼主要做的是:
emerge nvidia-kernel
回复 支持 反对

使用道具 举报

发表于 2006-4-16 18:55:13 | 显示全部楼层
说不了.不过给你个方法可以试试.

把你宿主系统的xorg.conf拷到你现在的系统里面.
回复 支持 反对

使用道具 举报

发表于 2006-4-16 18:59:29 | 显示全部楼层
Failed to initialize the NVIDIA kernel module!
回复 支持 反对

使用道具 举报

发表于 2006-4-16 18:59:35 | 显示全部楼层
Driver      "nvidia"

把nvidia换成nv试试
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-4-16 21:41:46 | 显示全部楼层
果然自动配置时使用的是nv驱动。把驱动换成nv就好了。谢谢大家。
回复 支持 反对

使用道具 举报

发表于 2006-4-16 22:14:10 | 显示全部楼层
...nv那么显示卡3d能行么?

有nvidia-setting的portage吧
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-4-16 22:32:00 | 显示全部楼层
刚运行了一下glxgears,才350多。晕啊!
还请高手解释一下,nv和nvidia啥关系啊?有啥区别啊?
官方的驱动模块是叫nvidia吧?我已经emerge nvidia-kernel了,为啥在xorg.conf中加了nvidia找不到modules呢?
另外还想问问大家,你们的字体管理工具和中文字体用的啥啊?
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表