Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
nvidia card set up
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 7:10 pm    Post subject: nvidia card set up Reply with quote

I have followed the gentoo instructions to the T when I run
Code:

$ glxinfo | grep direct


I get
Code:

bash-2.05b# glxinfo | grep direct
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Error: couldn't find RGB GLX visual
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".
Xlib:  extension "GLX" missing on display ":0.0".


Whats going on here? I got an geforce2MX card and I am running gentoo-dev-sources kernel
2.6
Back to top
View user's profile Send private message
Steven Robertson
Tux's lil' helper
Tux's lil' helper


Joined: 26 Mar 2003
Posts: 140
Location: Tampa, FL

PostPosted: Sun Aug 29, 2004 7:14 pm    Post subject: Reply with quote

It's likely that somehow the 'Load "glx"' line somehow got omitted. Check your X config file (/etc/X11/xorg.conf for xorg (recommended), or /etc/X11/XF86Config for xfree86), and make sure that it has the line

Code:
Load    "glx"


near the top (between Section "Module" and the first EndSection). If that's in there, make sure that nvidia-glx is properly emerged.

HTH.
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 7:38 pm    Post subject: xorg.config file Reply with quote

Here is waht the moduls section looks like:

Code:

# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

# This loads the DBE extension module.

    Load        "dbe"   # Double buffer extension

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

# This loads the Type1 and FreeType font modules
    Load        "type1"
    Load        "speedo"
    Load        "freetype"
#    Load        "xtt"

# This loads the GLX module
    Load       "glx"
# This loads the DRI module
#    Load       "dri"

EndSection


here is what the graphics section look like

Code:

# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

# Standard VGA Device:

Section "Device"
    Identifier  "Standard VGA"
    VendorName  "Unknown"
    BoardName   "Unknown"

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

#    Chipset    "generic"

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

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

#    BusID      "PCI:0:10:0"

#    VideoRam   256

#    Clocks     25.2 28.3

EndSection

# Device configured by xorgconfig:

Section "Device"
    Identifier  "GeForce2MX"
    Driver      "nvidia"
    VideoRam    65536
    # Insert Clocks lines here if appropriate
EndSection



I also tried to emerge and nvidia-kernel and nvidia-glx again
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 8:38 pm    Post subject: Well its working now Reply with quote

Don't know why it worked but I hit ALT-CTRL-BACKSPACE and went back into the Shell and it worked.

Last time I rebooted and had to redo the xorg.conf file cause i wouldn't boot up in KDE or X just comand line stuff
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 8:49 pm    Post subject: Ok not completly fixed Reply with quote

if I hit ALT-CTRL-BACKSPACE it freezes up now? Any IDEAS?
Back to top
View user's profile Send private message
chonger
n00b
n00b


Joined: 01 Aug 2004
Posts: 27

PostPosted: Sun Aug 29, 2004 9:12 pm    Post subject: Reply with quote

It appears that you are using the wrong driver.

Note the
Quote:

Driver "vga"


In your config. If you have the nvidia driver installed. You should be using.

Driver "nvidia"

Restart x and you should see the nvidia splashscreen displayed right before x starts, and then try glxinfo again.
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 9:13 pm    Post subject: ALSO not quite fixed yet... Reply with quote

WHen I stop my session, try to restart, or shutdown in KDE it also freezes up. AND if I do a ALT-CTRL-F1, F2 etc It freezes up. Keyboard and mouse no longer work. I hit the reboot button and I see every thing mount ok and nVidia logo then KDE starts.
Back to top
View user's profile Send private message
chonger
n00b
n00b


Joined: 01 Aug 2004
Posts: 27

PostPosted: Sun Aug 29, 2004 9:25 pm    Post subject: Reply with quote

Do you have any more details on this problem (computer locking up on reboot)? For example, does it only happen when you're running KDE? Do you get any error messages in /var/log/Xorg.0.log (or any of the log files in /var/log)? Do you get the same problem using the "nv" driver that comes with X?

Driver "nv" # instead of Driver "nvidia"
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 9:26 pm    Post subject: Reply with quote

chonger wrote:
It appears that you are using the wrong driver.

Note the
Quote:

Driver "vga"


In your config. If you have the nvidia driver installed. You should be using.

Driver "nvidia"

Restart x and you should see the nvidia splashscreen displayed right before x starts, and then try glxinfo again.


Ok changed it yo nvidia still no change still locking up? is there a way to restart x fromt the shell while in KDE?
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 9:42 pm    Post subject: Reply with quote

chonger wrote:
Do you have any more details on this problem (computer locking up on reboot)? For example, does it only happen when you're running KDE? Do you get any error messages in /var/log/Xorg.0.log (or any of the log files in /var/log)? Do you get the same problem using the "nv" driver that comes with X?

Driver "nv" # instead of Driver "nvidia"


here is what the Xorg.0.log says:
[code:1:590f8de148]
Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: Linux 2.4.26-gentoo-r9 i686 [ELF]
Current Operating System: Linux tux 2.6.8-gentoo-r2 #2 SMP Sat Aug 28 19:20:49 Local time zone must be set--see zic i686
Build Date: 25 August 2004
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Aug 28 18:32:18 2004
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) | |-->Monitor "CTX color monitor"
(**) | |-->Device "geforce2MX"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) XKB: rules: "xorg"
(**) Option "XkbModel" "pc101"
(**) XKB: model: "pc101"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Speedo/,/usr/share/fonts/Type1/,/usr/share/fonts/CID/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/,/usr/share/fonts/local/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(++) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x80010044, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 8086,1a30 rev 11 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 11 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 8086,5032 rev 01 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 8086,5032 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 8086,5032 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 8086,5032 rev 01 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 81 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 01 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 8086,5032 rev 01 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 8086,5032 rev 01 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 8086,0102 rev 01 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0110 card 10de,0054 rev b2 class 03,00,00 hdr 00
(II) PCI: 02:08:0: chip 8086,1039 card 8086,3005 rev 81 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfc900000 - 0xfe9fffff (0x2100000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xe4600000 - 0xf46fffff (0x10100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[1] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
[2] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
[3] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xfea00000 - 0xfeafffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xf4700000 - 0xf47fffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev 178, Mem @ 0xfd000000/24, 0xe8000000/27, BIOS @ 0xfe9f0000/16
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
(II) Active PCI resource ranges:
[0] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[1] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[2] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[3] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[4] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[5] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[6] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[7] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[8] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[9] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[10] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[11] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[12] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[13] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[14] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[15] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[16] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[1] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[2] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[3] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[4] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[5] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[6] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[7] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[8] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[9] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[10] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[11] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[12] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[13] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[14] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[15] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[16] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[7] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[9] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[12] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[13] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[17] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[19] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[20] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[22] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[23] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
(II) Module speedo: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.1
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.7.0, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.5336
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.5336
Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) NVIDIA XFree86 Driver 1.0-5336 Wed Jan 14 18:30:46 PST 2004
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[7] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[9] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[12] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[13] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[17] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[19] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[20] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[22] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[23] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[7] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[9] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[12] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[13] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[20] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[21] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[22] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[23] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[24] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[25] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[26] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[27] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[28] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(--) NVIDIA(0): Linear framebuffer at 0xE8000000
(--) NVIDIA(0): MMIO registers at 0xFD000000
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce2 MX/MX 400
(--) NVIDIA(0): VideoBIOS: 03.11.00.18.68
(--) NVIDIA(0): VideoRAM: 32768 kBytes
(II) NVIDIA(0): Connected display device(s): CRT-0
(--) NVIDIA(0): Display device CRT-0: maximum pixel clock at 8 bpp: 350 MHz
(--) NVIDIA(0): Display device CRT-0: maximum pixel clock at 16 bpp: 350 MHz
(--) NVIDIA(0): Display device CRT-0: maximum pixel clock at 32 bpp: 300 MHz
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(WW) NVIDIA(0): config file hsync range 31.5-57kHz not within DDC hsync ranges.
(WW) NVIDIA(0): config file vrefresh range 50-70Hz not within DDC vrefresh ranges.
(II) NVIDIA(0): CTX color monitor: Using hsync range of 31.50-57.00 kHz
(II) NVIDIA(0): CTX color monitor: Using vrefresh range of 50.00-70.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 300.00 MHz
(II) NVIDIA(0): Not using default mode "640x350" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x175" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "720x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "360x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (hsync out of range)
(II) NVIDIA(0): Not using default mode "576x432" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1200" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x600" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1792x1344" (hsync out of range)
(II) NVIDIA(0): Not using default mode "896x672" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1856x1392" (hsync out of range)
(II) NVIDIA(0): Not using default mode "928x696" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (hsync out of range)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "832x624" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "416x312" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1400x1050" (hsync out of range)
(II) NVIDIA(0): Not using default mode "700x525" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1600x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "800x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1920x1440" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "960x720" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "2048x1536" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using mode "1280x1024" (no mode of this name)
(II) NVIDIA(0): Not using default mode "1152x768" (width too large for virtual size)
(WW) NVIDIA(0): Not using mode "576x384":
(WW) NVIDIA(0): horizontal sync start (589) not a multiple of 8
(**) NVIDIA(0): Validated modes for display device CRT-0:
(**) NVIDIA(0): Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(**) NVIDIA(0): Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(**) NVIDIA(0): Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(**) NVIDIA(0): Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(**) NVIDIA(0): Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(**) NVIDIA(0): Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(**) NVIDIA(0): Default mode "400x300": 18.0 MHz, 35.2 kHz, 56.3 Hz (D)
(**) NVIDIA(0): Default mode "320x240": 12.6 MHz, 31.5 kHz, 60.1 Hz (D)
(II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
(--) NVIDIA(0): Display dimensions: (310, 230) mm
(--) NVIDIA(0): DPI set to (83, 84)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC? No, I don't.
(II) resource ranges after preInit:
[0] 0 0 0xe8000000 - 0xefffffff (0x8000000) MX[B]
[1] 0 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B]
[2] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[3] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[4] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[5] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[6] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[7] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[8] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[9] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[10] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[11] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[12] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[13] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[14] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[15] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
[17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
[18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
[19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[20] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[21] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[22] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[23] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[24] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[25] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[26] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[27] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[28] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[29] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU)
[30] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU)
(II) NVIDIA(0): AGP 4X successfully initialized
(II) NVIDIA(0): Setting mode "1024x768"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing extension GLX
(**) Option "Protocol" "Auto"
(**) Mouse1: Device: "/dev/mouse"
(**) Mouse1: Protocol: "Auto"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/mouse"
(==) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(==) Mouse1: Buttons: 3
(II) Keyboard "Keyboard1" handled by legacy driver
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(--) Mouse1: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse1: ps2EnableDataReporting: succeeded
Could not init font path element /usr/share/fonts/CID/, removing from list!
Could not init font path element /usr/share/fonts/local/, removing from list!
SetClientVersion: 0 8

Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.7
Build Operating System: Linux 2.4.26-gentoo-r9 i686 [ELF]
Current Operating System: Linux tux 2.6.8-gentoo-r2 #2 SMP Sat Aug 28 19:20:49 Local time zone must be set--see zic i686
Build Date: 25 August 2004
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Aug 28 18:32:18 2004
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) | |-->Monitor "CTX color monitor"
(**) | |-->Device "geforce2MX"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) XKB: rules: "xorg"
(**) Option "XkbModel" "pc101"
(**) XKB: model: "pc101"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to "/usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Speedo/,/usr/share/fonts/Type1/,/usr/share/fonts/CID/,/usr/share/fonts/75dpi/,/usr/share/fonts/100dpi/,/usr/share/fonts/local/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.2
X.Org Video Driver: 0.7
X.Org XInput driver : 0.4
X.Org Server Extension : 0.2
X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(++) using VT number 7

(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x80010044, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card 8086,1a30 rev 11 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1a31 card 0000,0000 rev 11 class 06,04,00 hdr 01
(II) PCI: 00:1d:0: chip 8086,24c2 card 8086,5032 rev 01 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 8086,5032 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 8086,5032 rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 8086,5032 rev 01 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card 0000,0000 rev 81 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card 0000,0000 rev 01 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 8086,5032 rev 01 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 8086,5032 rev 01 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 8086,0102 rev 01 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0110 card 10de,0054 rev b2 class 03,00,00 hdr 00
(II) PCI: 02:08:0: chip 8086,1039 card 8086,3005 rev 81 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1 0 0xfc900000 - 0xfe9fffff (0x2100000) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1 0 0xe4600000 - 0xf46fffff (0x10100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
[1] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
[2] -1 0 0x0000d800 - 0x0000d8ff (0x100) IX[B]
[3] -1 0 0x0000dc00 - 0x0000dcff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1 0 0xfea00000 - 0xfeafffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1 0 0xf4700000 - 0xf47fffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev 178, Mem @ 0xfd000000/24, 0xe8000000/27, BIOS @ 0xfe9f0000/16
(II) Addressable bus resource ranges are
[0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
[1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xf8000000 from 0xfbffffff to 0xf7ffffff
(II) Active PCI resource ranges:
[0] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[1] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[2] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[3] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[4] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[5] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[6] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[7] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[8] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[9] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[10] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[11] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[12] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[13] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[14] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[15] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[16] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
[0] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[1] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[2] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[3] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[4] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[5] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[6] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[7] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[8] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[9] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[10] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[11] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[12] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[13] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[14] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[15] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[16] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[7] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[9] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[12] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[13] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[17] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[19] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[20] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[22] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[23] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.2
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
(II) Module speedo: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.1
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
compiled for 6.7.0, module version = 2.1.0
Module class: X.Org Font Renderer
ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.5336
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/X11R6/lib/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
compiled for 4.0.2, module version = 1.0.5336
Module class: XFree86 Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 0.4
(II) NVIDIA XFree86 Driver 1.0-5336 Wed Jan 14 18:30:46 PST 2004
(II) NVIDIA Unified Driver for all NVIDIA GPUs
(II) Primary Device is: PCI 01:00:0
(--) Assigning device section with no busID to primary device
(--) Chipset NVIDIA GPU found
(II) resource ranges after xf86ClaimFixedResources() call:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[7] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[9] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[12] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[13] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[15] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[16] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[17] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[18] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[19] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[20] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[21] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[22] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[23] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
(II) resource ranges after probing:
[0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
[1] -1 0 0x00100000 - 0x0fffffff (0xff00000) MX[B]E(B)
[2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
[3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
[4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
[5] -1 0 0xfeaff000 - 0xfeafffff (0x1000) MX[B]
[6] -1 0 0xfebff400 - 0xfebff4ff (0x100) MX[B]
[7] -1 0 0xfebff800 - 0xfebff9ff (0x200) MX[B]
[8] -1 0 0x10000000 - 0x100003ff (0x400) MX[B]
[9] -1 0 0xfebffc00 - 0xfebfffff (0x400) MX[B]
[10] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
[11] -1 0 0xfe9f0000 - 0xfe9fffff (0x10000) MX[B](B)
[12] -1 0 0xe8000000 - 0xefffffff (0x8000000) MX[B](B)
[13] -1 0 0xfd000000 - 0xfdffffff (0x1000000) MX[B](B)
[14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
[15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
[16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
[17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
[18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
[19] -1 0 0x0000dc00 - 0x0000dc3f (0x40) IX[B]
[20] -1 0 0x0000e080 - 0x0000e0bf (0x40) IX[B]
[21] -1 0 0x0000e400 - 0x0000e4ff (0x100) IX[B]
[22] -1 0 0x0000e000 - 0x0000e01f (0x20) IX[B]
[23] -1 0 0x0000ffa0 - 0x0000ffaf (0x10) IX[B]
[24] -1 0 0x0000ec00 - 0x0000ec1f (0x20) IX[B]
[25] -1 0 0x0000e880 - 0x0000e89f (0x20) IX[B]
[26] -1 0 0x0000e800 - 0x0000e81f (0x20) IX[B]
[27] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
[28] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 0.1.0
ABI class: X.Org Video Driver, version 0.7
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(--) NVIDIA(0): Linear framebuffer at 0xE8000000
(--) NVIDIA(0): MMIO registers at 0xFD000000
(II) NVIDIA(0): NVIDIA GPU detected as: GeForce2 MX/MX 400
(--) NVIDIA(0): VideoBIOS: 03.11.00.18.68
(--) NVIDIA(0): VideoRAM: 32768 kBytes
(II) NVIDIA(0): Connected display device(s): CRT-0
(--) NVIDIA(0): Display device CRT-0: maximum pixel clock at 8 bpp: 350 MHz
(--) NVIDIA(0): Display device CRT-0: maximum pixel clock at 16 bpp: 350 MHz
(--) NVIDIA(0): Display device CRT-0: maximum pixel clock at 32 bpp: 300 MHz
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="X.Org Foundation"
compiled for 6.7.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.7
(WW) NVIDIA(0): config file hsync range 31.5-57kHz not within DDC hsync ranges.
(WW) NVIDIA(0): config file vrefresh range 50-70Hz not within DDC vrefresh ranges.
(II) NVIDIA(0): CTX color monitor: Using hsync range of 31.50-57.00 kHz
(II) NVIDIA(0): CTX color monitor: Using vrefresh range of 50.00-70.00 Hz
(II) NVIDIA(0): Clock range: 12.00 to 300.00 MHz
(II) NVIDIA(0): Not using default mode "640x350" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x175" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "720x400" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "360x200" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "640x480" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "320x240" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "800x600" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "400x300" (vrefresh out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "512x384" (bad mode clock/interlace/doublescan)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1024x768" (hsync out of range)
(II) NVIDIA(0): Not using default mode "512x384" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1152x864" (hsync out of range)
(II) NVIDIA(0): Not using default mode "576x432" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x960" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x480" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "1280x1024" (hsync out of range)
(II) NVIDIA(0): Not using default mode "640x512" (hsync out of range)
(II) NVIDIA(0): Not using default mode "128
Back to top
View user's profile Send private message
chonger
n00b
n00b


Joined: 01 Aug 2004
Posts: 27

PostPosted: Sun Aug 29, 2004 9:46 pm    Post subject: Reply with quote

Yes. You can always do

# killall X

(killlall kills all process named 'X'. OR you can use top to find the pid of X and perofrm kill pid)

But if your machine is freezing when you end your session through KDE or kill X through other means, then I'm sure it'll crash if you kill X through the shell as well.

What do you see when you exit your session? Do you get dumped to the shell and then the machine locks up? Or do you see just a blank screen and your machine locks up?

BTW how do you start X? Do you do it from the shell, or do you use a graphic login like kdm or xdm?
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 10:25 pm    Post subject: Reply with quote

chonger wrote:
Yes. You can always do

# killall X

(killlall kills all process named 'X'. OR you can use top to find the pid of X and perofrm kill pid)

But if your machine is freezing when you end your session through KDE or kill X through other means, then I'm sure it'll crash if you kill X through the shell as well.

What do you see when you exit your session? Do you get dumped to the shell and then the machine locks up? Or do you see just a blank screen and your machine locks up?

BTW how do you start X? Do you do it from the shell, or do you use a graphic login like kdm or xdm?


It jsut scrambles the screen all up then stops. Tried the killall X it forze just like you thought. It's set up to start autimatically as per the manual it goes straight to kde GUI login.
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Sun Aug 29, 2004 10:37 pm    Post subject: Reply with quote

chonger wrote:
Yes. You can always do

# killall X

(killlall kills all process named 'X'. OR you can use top to find the pid of X and perofrm kill pid)

But if your machine is freezing when you end your session through KDE or kill X through other means, then I'm sure it'll crash if you kill X through the shell as well.

What do you see when you exit your session? Do you get dumped to the shell and then the machine locks up? Or do you see just a blank screen and your machine locks up?

BTW how do you start X? Do you do it from the shell, or do you use a graphic login like kdm or xdm?


It jsut scrambles the screen all up then stops. Tried the killall X it forze just like you thought. It's set up to start autimatically as per the manual it goes straight to kde GUI login.
Back to top
View user's profile Send private message
endoalpha
Tux's lil' helper
Tux's lil' helper


Joined: 29 Jun 2002
Posts: 101

PostPosted: Mon Aug 30, 2004 1:11 am    Post subject: Reply with quote

From the nvidia-kernel-1.0.5336 ebuild warnings:

Quote:
The new 2.6.6 Series kernels include an option for 4K Stack sizes, this option must NOT be selected. This driver will only work with the OLD 8K Stack size, please ensure you leave 8K stack sizes for now.


I am sure you know about this already......
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Mon Aug 30, 2004 1:25 am    Post subject: Reply with quote

endoalpha wrote:
From the nvidia-kernel-1.0.5336 ebuild warnings:

Quote:
The new 2.6.6 Series kernels include an option for 4K Stack sizes, this option must NOT be selected. This driver will only work with the OLD 8K Stack size, please ensure you leave 8K stack sizes for now.


I am sure you know about this already......


English please....
I am assuming this is an option in the kernel?
Back to top
View user's profile Send private message
placeholder
Advocate
Advocate


Joined: 07 Feb 2004
Posts: 2500

PostPosted: Mon Aug 30, 2004 2:05 am    Post subject: Reply with quote

Have you tried using the latest ~x86 drivers? Do that like this:

Code:
# ACCEPT_KEYWORDS="~x86" emerge nvidia-glx nvidia-kernel
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Mon Aug 30, 2004 2:14 am    Post subject: Reply with quote

Pwnz3r wrote:
Have you tried using the latest ~x86 drivers? Do that like this:

Code:
# ACCEPT_KEYWORDS="~x86" emerge nvidia-glx nvidia-kernel


I'll give it a whirl and see what happens.
Back to top
View user's profile Send private message
mlmartin
n00b
n00b


Joined: 29 Aug 2004
Posts: 31

PostPosted: Mon Aug 30, 2004 3:26 am    Post subject: Reply with quote

I'm getting this now when I do a modprobe nvidia

Code:
FATAL: Error inserting nvidia (/lib/modules/2.6.8-gentoo-r2/video/nvidia.o): Invalid module format


This is the contents of the dir

Code:
tux video # cd /lib/modules/2.6.8-gentoo-r2/video/
tux video # ls
nvidia.ko
Back to top
View user's profile Send private message
endoalpha
Tux's lil' helper
Tux's lil' helper


Joined: 29 Jun 2002
Posts: 101

PostPosted: Mon Aug 30, 2004 3:44 am    Post subject: Reply with quote

mlmartin wrote:
endoalpha wrote:
From the nvidia-kernel-1.0.5336 ebuild warnings:

Quote:
The new 2.6.6 Series kernels include an option for 4K Stack sizes, this option must NOT be selected. This driver will only work with the OLD 8K Stack size, please ensure you leave 8K stack sizes for now.


I am sure you know about this already......


English please....
I am assuming this is an option in the kernel?


My post was in english....
You assume correctly.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum