public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] upgraded video card, nvidia drivers no longer work
@ 2008-07-26 18:17 Budd, Tracy
  2008-07-26 19:03 ` Chuck Robey
                   ` (5 more replies)
  0 siblings, 6 replies; 23+ messages in thread
From: Budd, Tracy @ 2008-07-26 18:17 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 3136 bytes --]

xorg.conf below. Note that driver changed to nv in order to run X.
If I try to use "nvidia" I get a blank screen and the machine locks.
I checked the Xorg.0.log file and the machine seems to have died before it wrote anything.
Suggestions appreciated.
-Tracy

Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib64/xorg/modules"
        FontPath     "/usr/share/fonts/misc/"
        FontPath     "/usr/share/fonts/TTF/"
        FontPath     "/usr/share/fonts/OTF"
        FontPath     "/usr/share/fonts/Type1/"
        FontPath     "/usr/share/fonts/100dpi/"
        FontPath     "/usr/share/fonts/75dpi/"
EndSection

Section "Module"
        Load  "glx"
        Load  "extmod"
        Load  "dbe"
        Load  "record"
        Load  "GLcore"
        Load  "xtrap"
        #Load  "dri"
        Load  "wfb"
        Load  "freetype"
        Load  "type1"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "SWcursor"                  # [<bool>]
        #Option     "HWcursor"                  # [<bool>]
        #Option     "NoAccel"                   # [<bool>]
        #Option     "ShadowFB"                  # [<bool>]
        #Option     "UseFBDev"                  # [<bool>]
        #Option     "Rotate"                    # [<str>]
        #Option     "VideoKey"                  # <i>
        #Option     "FlatPanel"                 # [<bool>]
        #Option     "FPDither"                  # [<bool>]
        #Option     "CrtcNumber"                # <i>
        #Option     "FPScale"                   # [<bool>]
        #Option     "FPTweak"                   # <i>
        #Option     "DualHead"                  # [<bool>]
        Identifier  "Card0"
        Driver      "nv"
        VendorName  "nVidia Corporation"
        BoardName   "Unknown Board"
        BusID       "PCI:5:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

[-- Attachment #2: Type: text/html, Size: 9184 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
@ 2008-07-26 19:03 ` Chuck Robey
  2008-07-26 20:19   ` Budd, Tracy
  2008-07-26 20:41 ` Dale
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 23+ messages in thread
From: Chuck Robey @ 2008-07-26 19:03 UTC (permalink / raw
  To: gentoo-user

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died before
> it wrote anything.
> Suggestions appreciated.

You realize that the nvidia driver doesn't come wtih X, you need to build it
separately?  You have a nvidia_drv.so?  The nv comes by default, but it's a much
lesser tool.

> -Tracy
> 
> Section "ServerLayout"
>         Identifier     "X.org Configured"
>         Screen      0  "Screen0" 0 0
>         InputDevice    "Mouse0" "CorePointer"
>         InputDevice    "Keyboard0" "CoreKeyboard"
> EndSection
> 
> Section "Files"
>         RgbPath      "/usr/share/X11/rgb"
>         ModulePath   "/usr/lib64/xorg/modules"
>         FontPath     "/usr/share/fonts/misc/"
>         FontPath     "/usr/share/fonts/TTF/"
>         FontPath     "/usr/share/fonts/OTF"
>         FontPath     "/usr/share/fonts/Type1/"
>         FontPath     "/usr/share/fonts/100dpi/"
>         FontPath     "/usr/share/fonts/75dpi/"
> EndSection
> 
> Section "Module"
>         Load  "glx"
>         Load  "extmod"
>         Load  "dbe"
>         Load  "record"
>         Load  "GLcore"
>         Load  "xtrap"
>         #Load  "dri"
>         Load  "wfb"
>         Load  "freetype"
>         Load  "type1"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Keyboard0"
>         Driver      "kbd"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Mouse0"
>         Driver      "mouse"
>         Option      "Protocol" "auto"
>         Option      "Device" "/dev/input/mice"
>         Option      "ZAxisMapping" "4 5 6 7"
> EndSection
> 
> Section "Monitor"
>         Identifier   "Monitor0"
>         VendorName   "Monitor Vendor"
>         ModelName    "Monitor Model"
> EndSection
> 
> Section "Device"
>         ### Available Driver options are:-
>         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
>         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
>         ### [arg]: arg optional
>         #Option     "SWcursor"                  # [<bool>]
>         #Option     "HWcursor"                  # [<bool>]
>         #Option     "NoAccel"                   # [<bool>]
>         #Option     "ShadowFB"                  # [<bool>]
>         #Option     "UseFBDev"                  # [<bool>]
>         #Option     "Rotate"                    # [<str>]
>         #Option     "VideoKey"                  # <i>
>         #Option     "FlatPanel"                 # [<bool>]
>         #Option     "FPDither"                  # [<bool>]
>         #Option     "CrtcNumber"                # <i>
>         #Option     "FPScale"                   # [<bool>]
>         #Option     "FPTweak"                   # <i>
>         #Option     "DualHead"                  # [<bool>]
>         Identifier  "Card0"
>         Driver      "nv"
>         VendorName  "nVidia Corporation"
>         BoardName   "Unknown Board"
>         BusID       "PCI:5:0:0"
> EndSection
> 
> Section "Screen"
>         Identifier "Screen0"
>         Device     "Card0"
>         Monitor    "Monitor0"
>         SubSection "Display"
>                 Viewport   0 0
>                 Depth     16
>         EndSubSection
>         SubSection "Display"
>                 Viewport   0 0
>                 Depth     24
>         EndSubSection
> EndSection
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiLdOwACgkQz62J6PPcoOkpeACglqBsF7l/s5qBNEnN5wJR++5U
8NUAmQFyxqjANo92VfkpaCzqrB5j3p+m
=vGOm
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 19:03 ` Chuck Robey
@ 2008-07-26 20:19   ` Budd, Tracy
  2008-07-26 20:55     ` Chuck Robey
  0 siblings, 1 reply; 23+ messages in thread
From: Budd, Tracy @ 2008-07-26 20:19 UTC (permalink / raw
  To: gentoo-user, gentoo-user

[-- Attachment #1: Type: text/plain, Size: 4142 bytes --]

Yes. I have the nvidia driver built, and it loads using modprobe.


-----Original Message-----
From: Chuck Robey [mailto:chuckr@telenix.org]
Sent: Sat 7/26/2008 3:03 PM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
 
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died before
> it wrote anything.
> Suggestions appreciated.

You realize that the nvidia driver doesn't come wtih X, you need to build it
separately?  You have a nvidia_drv.so?  The nv comes by default, but it's a much
lesser tool.

> -Tracy
> 
> Section "ServerLayout"
>         Identifier     "X.org Configured"
>         Screen      0  "Screen0" 0 0
>         InputDevice    "Mouse0" "CorePointer"
>         InputDevice    "Keyboard0" "CoreKeyboard"
> EndSection
> 
> Section "Files"
>         RgbPath      "/usr/share/X11/rgb"
>         ModulePath   "/usr/lib64/xorg/modules"
>         FontPath     "/usr/share/fonts/misc/"
>         FontPath     "/usr/share/fonts/TTF/"
>         FontPath     "/usr/share/fonts/OTF"
>         FontPath     "/usr/share/fonts/Type1/"
>         FontPath     "/usr/share/fonts/100dpi/"
>         FontPath     "/usr/share/fonts/75dpi/"
> EndSection
> 
> Section "Module"
>         Load  "glx"
>         Load  "extmod"
>         Load  "dbe"
>         Load  "record"
>         Load  "GLcore"
>         Load  "xtrap"
>         #Load  "dri"
>         Load  "wfb"
>         Load  "freetype"
>         Load  "type1"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Keyboard0"
>         Driver      "kbd"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Mouse0"
>         Driver      "mouse"
>         Option      "Protocol" "auto"
>         Option      "Device" "/dev/input/mice"
>         Option      "ZAxisMapping" "4 5 6 7"
> EndSection
> 
> Section "Monitor"
>         Identifier   "Monitor0"
>         VendorName   "Monitor Vendor"
>         ModelName    "Monitor Model"
> EndSection
> 
> Section "Device"
>         ### Available Driver options are:-
>         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
>         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
>         ### [arg]: arg optional
>         #Option     "SWcursor"                  # [<bool>]
>         #Option     "HWcursor"                  # [<bool>]
>         #Option     "NoAccel"                   # [<bool>]
>         #Option     "ShadowFB"                  # [<bool>]
>         #Option     "UseFBDev"                  # [<bool>]
>         #Option     "Rotate"                    # [<str>]
>         #Option     "VideoKey"                  # <i>
>         #Option     "FlatPanel"                 # [<bool>]
>         #Option     "FPDither"                  # [<bool>]
>         #Option     "CrtcNumber"                # <i>
>         #Option     "FPScale"                   # [<bool>]
>         #Option     "FPTweak"                   # <i>
>         #Option     "DualHead"                  # [<bool>]
>         Identifier  "Card0"
>         Driver      "nv"
>         VendorName  "nVidia Corporation"
>         BoardName   "Unknown Board"
>         BusID       "PCI:5:0:0"
> EndSection
> 
> Section "Screen"
>         Identifier "Screen0"
>         Device     "Card0"
>         Monitor    "Monitor0"
>         SubSection "Display"
>                 Viewport   0 0
>                 Depth     16
>         EndSubSection
>         SubSection "Display"
>                 Viewport   0 0
>                 Depth     24
>         EndSubSection
> EndSection
> 

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiLdOwACgkQz62J6PPcoOkpeACglqBsF7l/s5qBNEnN5wJR++5U
8NUAmQFyxqjANo92VfkpaCzqrB5j3p+m
=vGOm
-----END PGP SIGNATURE-----



[-- Attachment #2: Type: text/html, Size: 11026 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
  2008-07-26 19:03 ` Chuck Robey
@ 2008-07-26 20:41 ` Dale
  2008-07-26 22:07   ` Budd, Tracy
  2008-07-27  4:10 ` Jesús Guerrero
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 23+ messages in thread
From: Dale @ 2008-07-26 20:41 UTC (permalink / raw
  To: gentoo-user

Budd, Tracy wrote:
>
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died 
> before it wrote anything.
> Suggestions appreciated.
> -Tracy
>

Two thoughts here.  Have you tried to re-emerge the drivers?  I don't 
think it will matter but it may.  I noticed when I tried to upgrade a 
while back that I got a error that the new driver would not work with my 
specific card so watch for anything "funny".  It may also be worth 
checking the nvidia website to make sure you got the right driver too.

Other than that, it's weird.

Dale

:-)  :-) 



^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 20:19   ` Budd, Tracy
@ 2008-07-26 20:55     ` Chuck Robey
  2008-07-26 22:08       ` Budd, Tracy
  0 siblings, 1 reply; 23+ messages in thread
From: Chuck Robey @ 2008-07-26 20:55 UTC (permalink / raw
  To: gentoo-user

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Budd, Tracy wrote:
> Yes. I have the nvidia driver built, and it loads using modprobe.

I still think you might be confusing the kernel module, using modprobe to load,
with the X11 driver (you need both) which is named (as I wrote below)
nvidia_drv.so.  You do not use modprobe to load the X11 driver.  Looking at your
included xorg.conf, you have nv loaded in X11, not nvidia.  Wrong item.

> 
> 
> -----Original Message-----
> From: Chuck Robey [mailto:chuckr@telenix.org]
> Sent: Sat 7/26/2008 3:03 PM
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer
> work
> 
> Budd, Tracy wrote:
>> xorg.conf below. Note that driver changed to nv in order to run X.
>> If I try to use "nvidia" I get a blank screen and the machine locks.
>> I checked the Xorg.0.log file and the machine seems to have died before
>> it wrote anything.
>> Suggestions appreciated.
> 
> You realize that the nvidia driver doesn't come wtih X, you need to build it
> separately?  You have a nvidia_drv.so?  The nv comes by default, but
> it's a much
> lesser tool.
> 
>> -Tracy
> 
>> Section "ServerLayout"
>>         Identifier     "X.org Configured"
>>         Screen      0  "Screen0" 0 0
>>         InputDevice    "Mouse0" "CorePointer"
>>         InputDevice    "Keyboard0" "CoreKeyboard"
>> EndSection
> 
>> Section "Files"
>>         RgbPath      "/usr/share/X11/rgb"
>>         ModulePath   "/usr/lib64/xorg/modules"
>>         FontPath     "/usr/share/fonts/misc/"
>>         FontPath     "/usr/share/fonts/TTF/"
>>         FontPath     "/usr/share/fonts/OTF"
>>         FontPath     "/usr/share/fonts/Type1/"
>>         FontPath     "/usr/share/fonts/100dpi/"
>>         FontPath     "/usr/share/fonts/75dpi/"
>> EndSection
> 
>> Section "Module"
>>         Load  "glx"
>>         Load  "extmod"
>>         Load  "dbe"
>>         Load  "record"
>>         Load  "GLcore"
>>         Load  "xtrap"
>>         #Load  "dri"
>>         Load  "wfb"
>>         Load  "freetype"
>>         Load  "type1"
>> EndSection
> 
>> Section "InputDevice"
>>         Identifier  "Keyboard0"
>>         Driver      "kbd"
>> EndSection
> 
>> Section "InputDevice"
>>         Identifier  "Mouse0"
>>         Driver      "mouse"
>>         Option      "Protocol" "auto"
>>         Option      "Device" "/dev/input/mice"
>>         Option      "ZAxisMapping" "4 5 6 7"
>> EndSection
> 
>> Section "Monitor"
>>         Identifier   "Monitor0"
>>         VendorName   "Monitor Vendor"
>>         ModelName    "Monitor Model"
>> EndSection
> 
>> Section "Device"
>>         ### Available Driver options are:-
>>         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
>>         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
>>         ### [arg]: arg optional
>>         #Option     "SWcursor"                  # [<bool>]
>>         #Option     "HWcursor"                  # [<bool>]
>>         #Option     "NoAccel"                   # [<bool>]
>>         #Option     "ShadowFB"                  # [<bool>]
>>         #Option     "UseFBDev"                  # [<bool>]
>>         #Option     "Rotate"                    # [<str>]
>>         #Option     "VideoKey"                  # <i>
>>         #Option     "FlatPanel"                 # [<bool>]
>>         #Option     "FPDither"                  # [<bool>]
>>         #Option     "CrtcNumber"                # <i>
>>         #Option     "FPScale"                   # [<bool>]
>>         #Option     "FPTweak"                   # <i>
>>         #Option     "DualHead"                  # [<bool>]
>>         Identifier  "Card0"
>>         Driver      "nv"
>>         VendorName  "nVidia Corporation"
>>         BoardName   "Unknown Board"
>>         BusID       "PCI:5:0:0"
>> EndSection
> 
>> Section "Screen"
>>         Identifier "Screen0"
>>         Device     "Card0"
>>         Monitor    "Monitor0"
>>         SubSection "Display"
>>                 Viewport   0 0
>>                 Depth     16
>>         EndSubSection
>>         SubSection "Display"
>>                 Viewport   0 0
>>                 Depth     24
>>         EndSubSection
>> EndSection
> 
> 
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiLj08ACgkQz62J6PPcoOnJeACggjgfOJC4v+p58oF1qQXgdJDa
SzEAoJSxtz9VOddWKqhGnjr37tlgF4nF
=wbaP
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 20:41 ` Dale
@ 2008-07-26 22:07   ` Budd, Tracy
  2008-07-26 22:35     ` Dale
  0 siblings, 1 reply; 23+ messages in thread
From: Budd, Tracy @ 2008-07-26 22:07 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 982 bytes --]

Yes. Tried re-emerging the drivers.


-----Original Message-----
From: Dale [mailto:dalek1967@bellsouth.net]
Sent: Sat 7/26/2008 4:41 PM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
 
Budd, Tracy wrote:
>
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died 
> before it wrote anything.
> Suggestions appreciated.
> -Tracy
>

Two thoughts here.  Have you tried to re-emerge the drivers?  I don't 
think it will matter but it may.  I noticed when I tried to upgrade a 
while back that I got a error that the new driver would not work with my 
specific card so watch for anything "funny".  It may also be worth 
checking the nvidia website to make sure you got the right driver too.

Other than that, it's weird.

Dale

:-)  :-) 



[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 3145 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 20:55     ` Chuck Robey
@ 2008-07-26 22:08       ` Budd, Tracy
  2008-07-27  0:27         ` Chuck Robey
  0 siblings, 1 reply; 23+ messages in thread
From: Budd, Tracy @ 2008-07-26 22:08 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 5019 bytes --]

Yes. I have nv loaded in my xorg.conf, because when I put nvidia in xorg.conf, my machine crashes. That is the problem that I am having. nvidia in xorg.conf used to work before I upgraded my card.


-----Original Message-----
From: Chuck Robey [mailto:chuckr@telenix.org]
Sent: Sat 7/26/2008 4:55 PM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
 
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Budd, Tracy wrote:
> Yes. I have the nvidia driver built, and it loads using modprobe.

I still think you might be confusing the kernel module, using modprobe to load,
with the X11 driver (you need both) which is named (as I wrote below)
nvidia_drv.so.  You do not use modprobe to load the X11 driver.  Looking at your
included xorg.conf, you have nv loaded in X11, not nvidia.  Wrong item.

> 
> 
> -----Original Message-----
> From: Chuck Robey [mailto:chuckr@telenix.org]
> Sent: Sat 7/26/2008 3:03 PM
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer
> work
> 
> Budd, Tracy wrote:
>> xorg.conf below. Note that driver changed to nv in order to run X.
>> If I try to use "nvidia" I get a blank screen and the machine locks.
>> I checked the Xorg.0.log file and the machine seems to have died before
>> it wrote anything.
>> Suggestions appreciated.
> 
> You realize that the nvidia driver doesn't come wtih X, you need to build it
> separately?  You have a nvidia_drv.so?  The nv comes by default, but
> it's a much
> lesser tool.
> 
>> -Tracy
> 
>> Section "ServerLayout"
>>         Identifier     "X.org Configured"
>>         Screen      0  "Screen0" 0 0
>>         InputDevice    "Mouse0" "CorePointer"
>>         InputDevice    "Keyboard0" "CoreKeyboard"
>> EndSection
> 
>> Section "Files"
>>         RgbPath      "/usr/share/X11/rgb"
>>         ModulePath   "/usr/lib64/xorg/modules"
>>         FontPath     "/usr/share/fonts/misc/"
>>         FontPath     "/usr/share/fonts/TTF/"
>>         FontPath     "/usr/share/fonts/OTF"
>>         FontPath     "/usr/share/fonts/Type1/"
>>         FontPath     "/usr/share/fonts/100dpi/"
>>         FontPath     "/usr/share/fonts/75dpi/"
>> EndSection
> 
>> Section "Module"
>>         Load  "glx"
>>         Load  "extmod"
>>         Load  "dbe"
>>         Load  "record"
>>         Load  "GLcore"
>>         Load  "xtrap"
>>         #Load  "dri"
>>         Load  "wfb"
>>         Load  "freetype"
>>         Load  "type1"
>> EndSection
> 
>> Section "InputDevice"
>>         Identifier  "Keyboard0"
>>         Driver      "kbd"
>> EndSection
> 
>> Section "InputDevice"
>>         Identifier  "Mouse0"
>>         Driver      "mouse"
>>         Option      "Protocol" "auto"
>>         Option      "Device" "/dev/input/mice"
>>         Option      "ZAxisMapping" "4 5 6 7"
>> EndSection
> 
>> Section "Monitor"
>>         Identifier   "Monitor0"
>>         VendorName   "Monitor Vendor"
>>         ModelName    "Monitor Model"
>> EndSection
> 
>> Section "Device"
>>         ### Available Driver options are:-
>>         ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
>>         ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
>>         ### [arg]: arg optional
>>         #Option     "SWcursor"                  # [<bool>]
>>         #Option     "HWcursor"                  # [<bool>]
>>         #Option     "NoAccel"                   # [<bool>]
>>         #Option     "ShadowFB"                  # [<bool>]
>>         #Option     "UseFBDev"                  # [<bool>]
>>         #Option     "Rotate"                    # [<str>]
>>         #Option     "VideoKey"                  # <i>
>>         #Option     "FlatPanel"                 # [<bool>]
>>         #Option     "FPDither"                  # [<bool>]
>>         #Option     "CrtcNumber"                # <i>
>>         #Option     "FPScale"                   # [<bool>]
>>         #Option     "FPTweak"                   # <i>
>>         #Option     "DualHead"                  # [<bool>]
>>         Identifier  "Card0"
>>         Driver      "nv"
>>         VendorName  "nVidia Corporation"
>>         BoardName   "Unknown Board"
>>         BusID       "PCI:5:0:0"
>> EndSection
> 
>> Section "Screen"
>>         Identifier "Screen0"
>>         Device     "Card0"
>>         Monitor    "Monitor0"
>>         SubSection "Display"
>>                 Viewport   0 0
>>                 Depth     16
>>         EndSubSection
>>         SubSection "Display"
>>                 Viewport   0 0
>>                 Depth     24
>>         EndSubSection
>> EndSection
> 
> 
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiLj08ACgkQz62J6PPcoOnJeACggjgfOJC4v+p58oF1qQXgdJDa
SzEAoJSxtz9VOddWKqhGnjr37tlgF4nF
=wbaP
-----END PGP SIGNATURE-----



[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 4753 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 22:07   ` Budd, Tracy
@ 2008-07-26 22:35     ` Dale
  0 siblings, 0 replies; 23+ messages in thread
From: Dale @ 2008-07-26 22:35 UTC (permalink / raw
  To: gentoo-user

Budd, Tracy wrote:
> Yes. Tried re-emerging the drivers.
>
>   

Did you check to make sure you have the right version?  From the error I 
got recently, some cards require certain versions.

Dale

:-)  :-) 



^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 22:08       ` Budd, Tracy
@ 2008-07-27  0:27         ` Chuck Robey
  2008-07-27  3:39           ` Budd, Tracy
  0 siblings, 1 reply; 23+ messages in thread
From: Chuck Robey @ 2008-07-27  0:27 UTC (permalink / raw
  To: gentoo-user

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Budd, Tracy wrote:
> Yes. I have nv loaded in my xorg.conf, because when I put nvidia in xorg.conf, 
my machine crashes. That is the problem that I am having. nvidia in xorg.conf
used to work before I upgraded my card.

OK, then, the next thing to do is to examine the Xorg.0.log file in /var/log.
Be careful, for posting that, because it can get large.  BUT at this point, it's
really the best resource you have, for trooubleshooting.  You'll see if you give
it a very careful examination.

> 
> 
> -----Original Message-----
> From: Chuck Robey [mailto:chuckr@telenix.org]
> Sent: Sat 7/26/2008 4:55 PM
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
>  
> Budd, Tracy wrote:
>> Yes. I have the nvidia driver built, and it loads using modprobe.
> 
> I still think you might be confusing the kernel module, using modprobe to load,
> with the X11 driver (you need both) which is named (as I wrote below)
> nvidia_drv.so.  You do not use modprobe to load the X11 driver.  Looking at your
> included xorg.conf, you have nv loaded in X11, not nvidia.  Wrong item.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiLwNsACgkQz62J6PPcoOmMzACfekbYdTikWnQOptqGn/AG9x/s
ez4An2Hd8luJ/bkY+DAGD3fL3m92g/S8
=6Wa3
-----END PGP SIGNATURE-----



^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27  0:27         ` Chuck Robey
@ 2008-07-27  3:39           ` Budd, Tracy
  0 siblings, 0 replies; 23+ messages in thread
From: Budd, Tracy @ 2008-07-27  3:39 UTC (permalink / raw
  To: gentoo-user, gentoo-user

[-- Attachment #1: Type: text/plain, Size: 19293 bytes --]

Here it is.
Xorg.0.log below
Any help deciphering this is appreciated.
-Tracy
--------------------
X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: UNKNOWN 
Current Operating System: Linux unegen 2.6.24-gentoo-r8 #3 Sat Jul 26 13:37:56 EDT 2008 x86_64
Build Date: 22 June 2008
        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 Jul 26 23:31:04 2008
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(WW) The directory "/usr/share/fonts/OTF" does not exist.
        Entry deleted from font path.
(**) FontPath set to:
        /usr/share/fonts/misc/,
        /usr/share/fonts/TTF/,
        /usr/share/fonts/Type1/,
        /usr/share/fonts/100dpi/,
        /usr/share/fonts/75dpi/
(**) RgbPath set to "/usr/share/X11/rgb"
(**) ModulePath set to "/usr/lib64/xorg/modules"
(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
(II) No APM support in BIOS or kernel
(II) Loader magic: 0x7bfac0
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.3
        X.Org Video Driver: 1.2
        X.Org XInput driver : 0.7
        X.Org Server Extension : 0.3
        X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib64/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.2
(--) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,005e card 1695,1011 rev a3 class 05,80,00 hdr 00
(II) PCI: 00:01:0: chip 10de,0050 card 1695,1011 rev a3 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0052 card 1695,1011 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,005a card 1695,1011 rev a2 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,005b card 1695,1011 rev a3 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0059 card 1695,1011 rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,0053 card 1695,1011 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:08:0: chip 10de,0055 card 10de,cb84 rev a3 class 01,01,85 hdr 00
(II) PCI: 00:09:0: chip 10de,005c card 0000,0000 rev a2 class 06,04,01 hdr 01
(II) PCI: 00:0a:0: chip 10de,0057 card 1695,1011 rev a3 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0c:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0e:0: chip 10de,005d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:18:0: chip 1022,1100 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:1: chip 1022,1101 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:2: chip 1022,1102 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 00:18:3: chip 1022,1103 card 0000,0000 rev 00 class 06,00,00 hdr 80
(II) PCI: 01:05:0: chip 4444,0016 card 0070,8801 rev 01 class 04,00,00 hdr 00
(II) PCI: 01:09:0: chip 1106,3044 card 1695,900e rev 80 class 0c,00,10 hdr 00
(II) PCI: 05:00:0: chip 10de,0402 card 3842,c750 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
(II) Bus 1 I/O range:
        [0] -1  0       0x0000b000 - 0x0000b0ff (0x100) IX[B]
        [1] -1  0       0x0000b400 - 0x0000b4ff (0x100) IX[B]
        [2] -1  0       0x0000b800 - 0x0000b8ff (0x100) IX[B]
        [3] -1  0       0x0000bc00 - 0x0000bcff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
        [0] -1  0       0xfea00000 - 0xfeafffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
        [0] -1  0       0xf8000000 - 0xfbffffff (0x4000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 2 I/O range:
        [0] -1  0       0x0000a000 - 0x0000a0ff (0x100) IX[B]
        [1] -1  0       0x0000a400 - 0x0000a4ff (0x100) IX[B]
        [2] -1  0       0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [3] -1  0       0x0000ac00 - 0x0000acff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
        [0] -1  0       0xfe900000 - 0xfe9fffff (0x100000) MX[B]
(II) Bus 2 prefetchable memory range:
        [0] -1  0       0xfe800000 - 0xfe8fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 3 I/O range:
        [0] -1  0       0x00009000 - 0x000090ff (0x100) IX[B]
        [1] -1  0       0x00009400 - 0x000094ff (0x100) IX[B]
        [2] -1  0       0x00009800 - 0x000098ff (0x100) IX[B]
        [3] -1  0       0x00009c00 - 0x00009cff (0x100) IX[B]
(II) Bus 3 non-prefetchable memory range:
        [0] -1  0       0xfe700000 - 0xfe7fffff (0x100000) MX[B]
(II) Bus 3 prefetchable memory range:
        [0] -1  0       0xfe600000 - 0xfe6fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 4 I/O range:
        [0] -1  0       0x00008000 - 0x000080ff (0x100) IX[B]
        [1] -1  0       0x00008400 - 0x000084ff (0x100) IX[B]
        [2] -1  0       0x00008800 - 0x000088ff (0x100) IX[B]
        [3] -1  0       0x00008c00 - 0x00008cff (0x100) IX[B]
(II) Bus 4 non-prefetchable memory range:
        [0] -1  0       0xfe500000 - 0xfe5fffff (0x100000) MX[B]
(II) Bus 4 prefetchable memory range:
        [0] -1  0       0xfe400000 - 0xfe4fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 5 I/O range:
        [0] -1  0       0x00007000 - 0x000070ff (0x100) IX[B]
        [1] -1  0       0x00007400 - 0x000074ff (0x100) IX[B]
        [2] -1  0       0x00007800 - 0x000078ff (0x100) IX[B]
        [3] -1  0       0x00007c00 - 0x00007cff (0x100) IX[B]
(II) Bus 5 non-prefetchable memory range:
        [0] -1  0       0xfc000000 - 0xfdffffff (0x2000000) MX[B]
(II) Bus 5 prefetchable memory range:
        [0] -1  0       0xb0000000 - 0xcfffffff (0x20000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), 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 (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
        [0] -1  0       0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI: (1:5:0) unknown vendor (0x4444) unknown chipset (0x0016) rev 1, Mem @ 0xf8000000/26
(--) PCI:*(5:0:0) nVidia Corporation unknown chipset (0x0402) rev 161, Mem @ 0xfc000000/24, 0xb0000000/28, 0xce000000/0, I/O @ 0x7c00/7
(II) Addressable bus resource ranges are
        [0] -1  0       0x00000000 - 0xffffffff (0x100000000) MX[B]
        [1] -1  0       0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [5] -1  0       0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
        [0] -1  0       0xfeaff000 - 0xfeaff7ff (0x800) MX[B]
        [1] -1  0       0xfebfa000 - 0xfebfafff (0x1000) MX[B]
        [2] -1  0       0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
        [3] -1  0       0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
        [4] -1  0       0xfebfe000 - 0xfebfe0ff (0x100) MX[B]
        [5] -1  0       0xfebff000 - 0xfebfffff (0x1000) MX[B]
        [6] -1  0       0xce000000 - 0xce000000 (0x1) MX[B](B)
        [7] -1  0       0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
        [8] -1  0       0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
        [9] -1  0       0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
        [10] -1 0       0x0000bc00 - 0x0000bc7f (0x80) IX[B]
        [11] -1 0       0x0000c800 - 0x0000c807 (0x8) IX[B]
        [12] -1 0       0x0000cc00 - 0x0000cc0f (0x10) IX[B]
        [13] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [14] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [15] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [16] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [17] -1 0       0x0000e000 - 0x0000e00f (0x10) IX[B]
        [18] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [19] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [20] -1 0       0x00004c40 - 0x00004c7f (0x40) IX[B]
        [21] -1 0       0x00004c00 - 0x00004c3f (0x40) IX[B]
        [22] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [23] -1 0       0x00007c00 - 0x00007c7f (0x80) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
        [0] -1  0       0xfeaff000 - 0xfeaff7ff (0x800) MX[B]
        [1] -1  0       0xfebfa000 - 0xfebfafff (0x1000) MX[B]
        [2] -1  0       0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
        [3] -1  0       0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
        [4] -1  0       0xfebfe000 - 0xfebfe0ff (0x100) MX[B]
        [5] -1  0       0xfebff000 - 0xfebfffff (0x1000) MX[B]
        [6] -1  0       0xce000000 - 0xce000000 (0x1) MX[B](B)
        [7] -1  0       0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
        [8] -1  0       0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
        [9] -1  0       0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
        [10] -1 0       0x0000bc00 - 0x0000bc7f (0x80) IX[B]
        [11] -1 0       0x0000c800 - 0x0000c807 (0x8) IX[B]
        [12] -1 0       0x0000cc00 - 0x0000cc0f (0x10) IX[B]
        [13] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [14] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [15] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [16] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [17] -1 0       0x0000e000 - 0x0000e00f (0x10) IX[B]
        [18] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [19] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [20] -1 0       0x00004c40 - 0x00004c7f (0x40) IX[B]
        [21] -1 0       0x00004c00 - 0x00004c3f (0x40) IX[B]
        [22] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [23] -1 0       0x00007c00 - 0x00007c7f (0x80) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [5] -1  0       0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
        [0] -1  0       0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1  0       0xfeaff000 - 0xfeaff7ff (0x800) MX[B]
        [5] -1  0       0xfebfa000 - 0xfebfafff (0x1000) MX[B]
        [6] -1  0       0xfebfb000 - 0xfebfbfff (0x1000) MX[B]
        [7] -1  0       0xfebfd000 - 0xfebfdfff (0x1000) MX[B]
        [8] -1  0       0xfebfe000 - 0xfebfe0ff (0x100) MX[B]
        [9] -1  0       0xfebff000 - 0xfebfffff (0x1000) MX[B]
        [10] -1 0       0xce000000 - 0xce000000 (0x1) MX[B](B)
        [11] -1 0       0xb0000000 - 0xbfffffff (0x10000000) MX[B](B)
        [12] -1 0       0xfc000000 - 0xfcffffff (0x1000000) MX[B](B)
        [13] -1 0       0xf8000000 - 0xfbffffff (0x4000000) MX[B](B)
        [14] -1 0       0x0000ffff - 0x0000ffff (0x1) IX[B]
        [15] -1 0       0x00000000 - 0x000000ff (0x100) IX[B]
        [16] -1 0       0x0000bc00 - 0x0000bc7f (0x80) IX[B]
        [17] -1 0       0x0000c800 - 0x0000c807 (0x8) IX[B]
        [18] -1 0       0x0000cc00 - 0x0000cc0f (0x10) IX[B]
        [19] -1 0       0x00000b60 - 0x00000b63 (0x4) IX[B]
        [20] -1 0       0x00000960 - 0x00000967 (0x8) IX[B]
        [21] -1 0       0x00000be0 - 0x00000be3 (0x4) IX[B]
        [22] -1 0       0x000009e0 - 0x000009e7 (0x8) IX[B]
        [23] -1 0       0x0000e000 - 0x0000e00f (0x10) IX[B]
        [24] -1 0       0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [25] -1 0       0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [26] -1 0       0x00004c40 - 0x00004c7f (0x40) IX[B]
        [27] -1 0       0x00004c00 - 0x00004c3f (0x40) IX[B]
        [28] -1 0       0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [29] -1 0       0x00007c00 - 0x00007c7f (0x80) IX[B](B)
(II) LoadModule: "glx"
(II) Loading /usr/lib64/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.0
        Module class: X.Org Server Extension
(II) NVIDIA GLX Module  173.14.09  Thu Jun  5 00:05:57 PDT 2008
(II) Loading extension GLX
(II) LoadModule: "extmod"
(II) Loading /usr/lib64/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(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 XFree86-DGA
(II) Loading extension DPMS
(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: "dbe"
(II) Loading /usr/lib64/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "record"
(II) Loading /usr/lib64/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.13.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD
(II) LoadModule: "xtrap"
(II) Loading /usr/lib64/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "wfb"
(II) Loading /usr/lib64/xorg/modules/extensions//libwfb.so
(II) Module wfb: vendor="NVIDIA Corporation"
        compiled for 7.1.99.2, module version = 1.0.0
(II) LoadModule: "freetype"
(II) Loading /usr/lib64/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
        compiled for 1.3.0, module version = 2.1.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "type1"
(II) Loading /usr/lib64/xorg/modules/fonts//libtype1.so
(II) Module type1: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.0.2
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "nvidia"
(II) Loading /usr/lib64/xorg/modules/drivers//nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.0
        Module class: X.Org Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib64/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.2.2
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "kbd"
(II) Loading /usr/lib64/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
        compiled for 1.3.0, module version = 1.1.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.7
(II) NVIDIA dlloader X Driver  173.14.09  Wed Jun  4 23:48:23 PDT 2008
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 05:00:0
(--) Chipset NVIDIA GPU found



-----Original Message-----
From: Chuck Robey [mailto:chuckr@telenix.org]
Sent: Sat 7/26/2008 8:27 PM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
 
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Budd, Tracy wrote:
> Yes. I have nv loaded in my xorg.conf, because when I put nvidia in xorg.conf, 
my machine crashes. That is the problem that I am having. nvidia in xorg.conf
used to work before I upgraded my card.

OK, then, the next thing to do is to examine the Xorg.0.log file in /var/log.
Be careful, for posting that, because it can get large.  BUT at this point, it's
really the best resource you have, for trooubleshooting.  You'll see if you give
it a very careful examination.

> 
> 
> -----Original Message-----
> From: Chuck Robey [mailto:chuckr@telenix.org]
> Sent: Sat 7/26/2008 4:55 PM
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
>  
> Budd, Tracy wrote:
>> Yes. I have the nvidia driver built, and it loads using modprobe.
> 
> I still think you might be confusing the kernel module, using modprobe to load,
> with the X11 driver (you need both) which is named (as I wrote below)
> nvidia_drv.so.  You do not use modprobe to load the X11 driver.  Looking at your
> included xorg.conf, you have nv loaded in X11, not nvidia.  Wrong item.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkiLwNsACgkQz62J6PPcoOmMzACfekbYdTikWnQOptqGn/AG9x/s
ez4An2Hd8luJ/bkY+DAGD3fL3m92g/S8
=6Wa3
-----END PGP SIGNATURE-----



[-- Attachment #2: Type: text/html, Size: 31970 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
  2008-07-26 19:03 ` Chuck Robey
  2008-07-26 20:41 ` Dale
@ 2008-07-27  4:10 ` Jesús Guerrero
  2008-07-27 13:18   ` Budd, Tracy
  2008-07-27  8:57 ` Volker Armin Hemmann
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 23+ messages in thread
From: Jesús Guerrero @ 2008-07-27  4:10 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 110 bytes --]

Hi,

Please, let us know the driver version and the card model.

-- 
Jesús Guerrero <i92guboj@terra.es>

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
                   ` (2 preceding siblings ...)
  2008-07-27  4:10 ` Jesús Guerrero
@ 2008-07-27  8:57 ` Volker Armin Hemmann
  2008-07-27 13:27   ` Budd, Tracy
  2008-07-28 15:08 ` Enzo Erre
  2008-07-28 15:12 ` [gentoo-user] upgraded video card, nvidia drivers no longer work Enzo Rapagnetta
  5 siblings, 1 reply; 23+ messages in thread
From: Volker Armin Hemmann @ 2008-07-27  8:57 UTC (permalink / raw
  To: gentoo-user

On Samstag, 26. Juli 2008, Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died before it
> wrote anything. Suggestions appreciated.
> -Tracy
>
> Section "ServerLayout"
>         Identifier     "X.org Configured"
>         Screen      0  "Screen0" 0 0
>         InputDevice    "Mouse0" "CorePointer"
>         InputDevice    "Keyboard0" "CoreKeyboard"
> EndSection
>
> Section "Files"
>         RgbPath      "/usr/share/X11/rgb"
>         ModulePath   "/usr/lib64/xorg/modules"
>         FontPath     "/usr/share/fonts/misc/"
>         FontPath     "/usr/share/fonts/TTF/"
>         FontPath     "/usr/share/fonts/OTF"
>         FontPath     "/usr/share/fonts/Type1/"
>         FontPath     "/usr/share/fonts/100dpi/"
>         FontPath     "/usr/share/fonts/75dpi/"
> EndSection
>
> Section "Module"
>         Load  "glx"
>         Load  "extmod"
>         Load  "dbe"
>         Load  "record"
>         Load  "GLcore"
>         Load  "xtrap"
>         #Load  "dri"
>         Load  "wfb"
>         Load  "freetype"
>         Load  "type1"
> EndSection

I suggest removing wfb, xtrap, record. I also suggest checking that you don't 
have nvidia fb in the kernel. I also suggest that you run nvidia-bug-report.sh 
and go to nvnews - more people with more experience on nvidia problems there - 
including devs.





^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27  4:10 ` Jesús Guerrero
@ 2008-07-27 13:18   ` Budd, Tracy
  2008-07-27 20:43     ` Neil Walker
  2008-07-28  7:43     ` Jesús Guerrero
  0 siblings, 2 replies; 23+ messages in thread
From: Budd, Tracy @ 2008-07-27 13:18 UTC (permalink / raw
  To: gentoo-user, gentoo-user

[-- Attachment #1: Type: text/plain, Size: 387 bytes --]


Card GeForce 8600GT. nvidia-drivers 173.14.09.

-----Original Message-----
From: Jesús Guerrero [mailto:i92guboj@terra.es]
Sent: Sun 7/27/2008 12:10 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
 
Hi,

Please, let us know the driver version and the card model.

-- 
Jesús Guerrero <i92guboj@terra.es>


[-- Attachment #2: Type: text/html, Size: 905 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27  8:57 ` Volker Armin Hemmann
@ 2008-07-27 13:27   ` Budd, Tracy
  2008-07-27 13:37     ` Norberto Bensa
  2008-07-27 14:24     ` Volker Armin Hemmann
  0 siblings, 2 replies; 23+ messages in thread
From: Budd, Tracy @ 2008-07-27 13:27 UTC (permalink / raw
  To: gentoo-user, gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1911 bytes --]

removed wfb, xtrap, record. Still didn't work.
No nvidiafb in kernel.
Is nvnews a lists.gentoo.org list?
Thank you.
-Tracy


-----Original Message-----
From: Volker Armin Hemmann [mailto:volker.armin.hemmann@tu-clausthal.de]
Sent: Sun 7/27/2008 4:57 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
 
On Samstag, 26. Juli 2008, Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died before it
> wrote anything. Suggestions appreciated.
> -Tracy
>
> Section "ServerLayout"
>         Identifier     "X.org Configured"
>         Screen      0  "Screen0" 0 0
>         InputDevice    "Mouse0" "CorePointer"
>         InputDevice    "Keyboard0" "CoreKeyboard"
> EndSection
>
> Section "Files"
>         RgbPath      "/usr/share/X11/rgb"
>         ModulePath   "/usr/lib64/xorg/modules"
>         FontPath     "/usr/share/fonts/misc/"
>         FontPath     "/usr/share/fonts/TTF/"
>         FontPath     "/usr/share/fonts/OTF"
>         FontPath     "/usr/share/fonts/Type1/"
>         FontPath     "/usr/share/fonts/100dpi/"
>         FontPath     "/usr/share/fonts/75dpi/"
> EndSection
>
> Section "Module"
>         Load  "glx"
>         Load  "extmod"
>         Load  "dbe"
>         Load  "record"
>         Load  "GLcore"
>         Load  "xtrap"
>         #Load  "dri"
>         Load  "wfb"
>         Load  "freetype"
>         Load  "type1"
> EndSection

I suggest removing wfb, xtrap, record. I also suggest checking that you don't 
have nvidia fb in the kernel. I also suggest that you run nvidia-bug-report.sh 
and go to nvnews - more people with more experience on nvidia problems there - 
including devs.





[-- Attachment #2: Type: text/html, Size: 4165 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27 13:27   ` Budd, Tracy
@ 2008-07-27 13:37     ` Norberto Bensa
  2008-07-27 13:49       ` Dale
  2008-07-27 14:24     ` Volker Armin Hemmann
  1 sibling, 1 reply; 23+ messages in thread
From: Norberto Bensa @ 2008-07-27 13:37 UTC (permalink / raw
  To: gentoo-user

Quoting "Budd, Tracy" <Tracy.Budd@solers.com>:

> Is nvnews a lists.gentoo.org list?

Nope -- NVidia forum. I don't have a URL at hand. Do a Google search

----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.





^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27 13:37     ` Norberto Bensa
@ 2008-07-27 13:49       ` Dale
  0 siblings, 0 replies; 23+ messages in thread
From: Dale @ 2008-07-27 13:49 UTC (permalink / raw
  To: gentoo-user

Norberto Bensa wrote:
> Quoting "Budd, Tracy" <Tracy.Budd@solers.com>:
>
>> Is nvnews a lists.gentoo.org list?
>
> Nope -- NVidia forum. I don't have a URL at hand. Do a Google search

http://www.nvnews.net/vbulletin/

Dale

:-) 



^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27 13:27   ` Budd, Tracy
  2008-07-27 13:37     ` Norberto Bensa
@ 2008-07-27 14:24     ` Volker Armin Hemmann
  2008-07-28 12:28       ` Budd, Tracy
  1 sibling, 1 reply; 23+ messages in thread
From: Volker Armin Hemmann @ 2008-07-27 14:24 UTC (permalink / raw
  To: gentoo-user

On Sonntag, 27. Juli 2008, Budd, Tracy wrote:
> removed wfb, xtrap, record. Still didn't work.
> No nvidiafb in kernel.
> Is nvnews a lists.gentoo.org list?
> Thank you.
> -Tracy
>

http://www.nvnews.net/vbulletin/forumdisplay.php?s=&forumid=14
you should search the forum first - and read the sticky's.

pleae don't top post.




^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27 13:18   ` Budd, Tracy
@ 2008-07-27 20:43     ` Neil Walker
  2008-07-28  7:43     ` Jesús Guerrero
  1 sibling, 0 replies; 23+ messages in thread
From: Neil Walker @ 2008-07-27 20:43 UTC (permalink / raw
  To: gentoo-user

Budd, Tracy wrote:

> Card GeForce 8600GT. nvidia-drivers 173.14.09.
>

That's exactly the combination I have on this machine (and several 
others).  No issues here so it suggests to me you have a configuration 
problem.

Be lucky,

Neil


-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.





^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27 13:18   ` Budd, Tracy
  2008-07-27 20:43     ` Neil Walker
@ 2008-07-28  7:43     ` Jesús Guerrero
  1 sibling, 0 replies; 23+ messages in thread
From: Jesús Guerrero @ 2008-07-28  7:43 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]

Hi again,

On Sun, 27 Jul 2008 09:18:39 -0400
"Budd, Tracy" <Tracy.Budd@solers.com> wrote:

> 
> Card GeForce 8600GT. nvidia-drivers 173.14.09.
> 
> -----Original Message-----
> From: Jesús Guerrero [mailto:i92guboj@terra.es]
> Sent: Sun 7/27/2008 12:10 AM
> To: gentoo-user@lists.gentoo.org
> Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
>  
> Hi,
> 
> Please, let us know the driver version and the card model.
> 
> -- 
> Jesús Guerrero <i92guboj@terra.es>
> 
> 

Sorry for being late. It seems a right combination. Are you sure it's a driver
issue? Maybe your wm is dying or something. Is it able to do a soft power off
if the acpi daemon is running? Can you remotely ssh and see what's happening?

The logs don't reveal a thing, look at the creating date or just delete it to
see if it's being recreated. If that's the case, then Xorg is starting without
a problem, and we should start looking elsewhere.
-- 
Jesús Guerrero <i92guboj@terra.es>

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-27 14:24     ` Volker Armin Hemmann
@ 2008-07-28 12:28       ` Budd, Tracy
  0 siblings, 0 replies; 23+ messages in thread
From: Budd, Tracy @ 2008-07-28 12:28 UTC (permalink / raw
  To: gentoo-user

 

-----Original Message-----
From: Volker Armin Hemmann [mailto:volker.armin.hemmann@tu-clausthal.de]

Sent: Sunday, July 27, 2008 10:25 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no longer
work

On Sonntag, 27. Juli 2008, Budd, Tracy wrote:
> removed wfb, xtrap, record. Still didn't work.
> No nvidiafb in kernel.
> Is nvnews a lists.gentoo.org list?
> Thank you.
> -Tracy
>

http://www.nvnews.net/vbulletin/forumdisplay.php?s=&forumid=14
you should search the forum first - and read the sticky's.

pleae don't top post.


Thank you for the link. It turns out that I needed to upgrade the BIOS.
All is good now.



^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
                   ` (3 preceding siblings ...)
  2008-07-27  8:57 ` Volker Armin Hemmann
@ 2008-07-28 15:08 ` Enzo Erre
  2008-07-28 15:25   ` [gentoo-user] upgraded video card, nvidia drivers no longerwork Budd, Tracy
  2008-07-28 15:12 ` [gentoo-user] upgraded video card, nvidia drivers no longer work Enzo Rapagnetta
  5 siblings, 1 reply; 23+ messages in thread
From: Enzo Erre @ 2008-07-28 15:08 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 582 bytes --]

On 14:17 Sat 26 Jul     , Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died before it wrote anything.
> Suggestions appreciated.
> -Tracy

Hi,
I had same problems,my solution has been to upgrade kernel
to 2.6.25-gentoo-r7 and downgrade+patch nvidia-drivers to 100.14.19.

help link http://www.nvnews.net/vbulletin/showthread.php?t=112452
Scuse for my english

Regards

-- 
Unix Veritates

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* Re: [gentoo-user] upgraded video card, nvidia drivers no longer work
  2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
                   ` (4 preceding siblings ...)
  2008-07-28 15:08 ` Enzo Erre
@ 2008-07-28 15:12 ` Enzo Rapagnetta
  5 siblings, 0 replies; 23+ messages in thread
From: Enzo Rapagnetta @ 2008-07-28 15:12 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 582 bytes --]

On 14:17 Sat 26 Jul     , Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died before it wrote anything.
> Suggestions appreciated.
> -Tracy

Hi,
I had same problems,my solution has been to upgrade kernel
to 2.6.25-gentoo-r7 and downgrade+patch nvidia-drivers to 100.14.19.

help link http://www.nvnews.net/vbulletin/showthread.php?t=112452
Scuse for my english

Regards

-- 
Unix Veritates

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 23+ messages in thread

* RE: [gentoo-user] upgraded video card, nvidia drivers no longerwork
  2008-07-28 15:08 ` Enzo Erre
@ 2008-07-28 15:25   ` Budd, Tracy
  0 siblings, 0 replies; 23+ messages in thread
From: Budd, Tracy @ 2008-07-28 15:25 UTC (permalink / raw
  To: gentoo-user

 

-----Original Message-----
From: Enzo Erre [mailto:kikko96@gmail.com] 
Sent: Monday, July 28, 2008 11:09 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] upgraded video card, nvidia drivers no
longerwork

On 14:17 Sat 26 Jul     , Budd, Tracy wrote:
> xorg.conf below. Note that driver changed to nv in order to run X.
> If I try to use "nvidia" I get a blank screen and the machine locks.
> I checked the Xorg.0.log file and the machine seems to have died
before it wrote anything.
> Suggestions appreciated.
> -Tracy

Hi,
I had same problems,my solution has been to upgrade kernel to
2.6.25-gentoo-r7 and downgrade+patch nvidia-drivers to 100.14.19.

help link http://www.nvnews.net/vbulletin/showthread.php?t=112452
Scuse for my english

Regards

--
Unix Veritates

Thank you for your response.
I fixed the problem by upgrading my bios.



^ permalink raw reply	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2008-07-28 15:25 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-26 18:17 [gentoo-user] upgraded video card, nvidia drivers no longer work Budd, Tracy
2008-07-26 19:03 ` Chuck Robey
2008-07-26 20:19   ` Budd, Tracy
2008-07-26 20:55     ` Chuck Robey
2008-07-26 22:08       ` Budd, Tracy
2008-07-27  0:27         ` Chuck Robey
2008-07-27  3:39           ` Budd, Tracy
2008-07-26 20:41 ` Dale
2008-07-26 22:07   ` Budd, Tracy
2008-07-26 22:35     ` Dale
2008-07-27  4:10 ` Jesús Guerrero
2008-07-27 13:18   ` Budd, Tracy
2008-07-27 20:43     ` Neil Walker
2008-07-28  7:43     ` Jesús Guerrero
2008-07-27  8:57 ` Volker Armin Hemmann
2008-07-27 13:27   ` Budd, Tracy
2008-07-27 13:37     ` Norberto Bensa
2008-07-27 13:49       ` Dale
2008-07-27 14:24     ` Volker Armin Hemmann
2008-07-28 12:28       ` Budd, Tracy
2008-07-28 15:08 ` Enzo Erre
2008-07-28 15:25   ` [gentoo-user] upgraded video card, nvidia drivers no longerwork Budd, Tracy
2008-07-28 15:12 ` [gentoo-user] upgraded video card, nvidia drivers no longer work Enzo Rapagnetta

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox