Gentoo Archives: gentoo-user

From: Jose Maria Alvarez Fernandez <jmalvarezf@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] failed to load nvidia kernel module
Date: Thu, 27 Oct 2005 20:43:32
Message-Id: 43613A7F.1090100@gmail.com
In Reply to: Re: [gentoo-user] failed to load nvidia kernel module by Qian Qiao
1 It's kernel related. 2.6.13 doesn't create the nvidia devicess correctly
2 with udev, which with 2.6.13 is default. You can try to put this in the
3 local.start if you want to use this nvidia kernel versions:
4
5 for i in 0 1 2 3 4 5 6 7; do
6 node="/dev/nvidia$i"
7 rm -f $node
8 mknod $node c 195 $i || echo "mknod \"$node\""
9 chmod 0660 $node || echo "chmod \"$node\""
10 chown :video $node || echo "chown \"$node\""
11 done
12 node="/dev/nvidiactl"
13 rm -f $node
14 mknod $node c 195 255 || echo "mknod \"$node\""
15 chmod 0666 $node || echo "chmod \"$node\""
16 chown :video $node || echo "chown \"$node\""
17
18 Hope it helps!
19
20 Qian Qiao wrote:
21 > On 10/27/05, renna <rennabh@×××××.com> wrote:
22 >
23 >>hi to all. i am finalizing a fresh new gentoo installation. i'm having some
24 >>problems with xorg and my nvidia geforce mx 440 card. i followed the
25 >>instructions on the dedicated part of documentation on gentoo.org, and even
26 >>tried the following commands as proposed by gentoo-wiki.com but i allways get
27 >>the same error
28 >>
29 >>#emerge nvidia-kernel nvidia-glx nvidia-settings
30 >>#opengl-update nvidia
31 >>#modprobe nvidia
32 >>#X -configure
33 >>#X -config /root/xorg.conf.new
34 >>
35 >>but i allways get this (from /var/log/Xorg.0.log)
36 >>
37 >>
38 >>[...]
39 >>(II) LoadModule: "mouse"
40 >>(II) Loading /usr/lib/modules/input/mouse_drv.o
41 >>(II) Module mouse: vendor="X.Org Foundation"
42 >> compiled for 6.8.2, module version = 1.0.0
43 >> Module class: X.Org XInput Driver
44 >> ABI class: X.Org XInput driver, version 0.4
45 >>(II) LoadModule: "kbd"
46 >>(II) Loading /usr/lib/modules/input/kbd_drv.o
47 >>(II) Module kbd: vendor="X.Org Foundation"
48 >> compiled for 6.8.2, module version = 1.0.0
49 >> Module class: X.Org XInput Driver
50 >> ABI class: X.Org XInput driver, version 0.4
51 >>(II) NVIDIA X Driver 1.0-6629 Wed Nov 3 13:14:07 PST 2004
52 >>(II) NVIDIA Unified Driver for all NVIDIA GPUs
53 >>(II) Primary Device is: PCI 01:00:0
54 >>(--) Chipset NVIDIA GPU found
55 >>(II) resource ranges after xf86ClaimFixedResources() call:
56 >> [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
57 >> [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
58 >> [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
59 >> [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
60 >> [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
61 >> [5] -1 0 0xec800000 - 0xec8007ff (0x800) MX[B]
62 >> [6] -1 0 0xed000000 - 0xed0000ff (0x100) MX[B]
63 >> [7] -1 0 0xed800000 - 0xed8000ff (0x100) MX[B]
64 >> [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
65 >> [9] -1 0 0xef7e0000 - 0xef7fffff (0x20000) MX[B](B)
66 >> [10] -1 0 0xef800000 - 0xef87ffff (0x80000) MX[B](B)
67 >> [11] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
68 >> [12] -1 0 0xee000000 - 0xeeffffff (0x1000000) MX[B](B)
69 >> [13] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
70 >> [14] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
71 >> [15] -1 0 0x0000b800 - 0x0000b87f (0x80) IX[B]
72 >> [16] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
73 >> [17] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
74 >> [18] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
75 >> [19] -1 0 0x00009400 - 0x0000943f (0x40) IX[B]
76 >> [20] -1 0 0x00009800 - 0x000098ff (0x100) IX[B]
77 >> [21] -1 0 0x0000a000 - 0x0000a01f (0x20) IX[B]
78 >> [22] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[B]
79 >> [23] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
80 >> [24] -1 0 0x0000a800 - 0x0000a80f (0x10) IX[B]
81 >>(II) resource ranges after probing:
82 >> [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
83 >> [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
84 >> [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
85 >> [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
86 >> [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
87 >> [5] -1 0 0xec800000 - 0xec8007ff (0x800) MX[B]
88 >> [6] -1 0 0xed000000 - 0xed0000ff (0x100) MX[B]
89 >> [7] -1 0 0xed800000 - 0xed8000ff (0x100) MX[B]
90 >> [8] -1 0 0xf8000000 - 0xf7ffffff (0x0) MX[B]O
91 >> [9] -1 0 0xef7e0000 - 0xef7fffff (0x20000) MX[B](B)
92 >> [10] -1 0 0xef800000 - 0xef87ffff (0x80000) MX[B](B)
93 >> [11] -1 0 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B)
94 >> [12] -1 0 0xee000000 - 0xeeffffff (0x1000000) MX[B](B)
95 >> [13] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
96 >> [14] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
97 >> [15] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
98 >> [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
99 >> [17] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
100 >> [18] -1 0 0x0000b800 - 0x0000b87f (0x80) IX[B]
101 >> [19] -1 0 0x0000d000 - 0x0000d0ff (0x100) IX[B]
102 >> [20] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[B]
103 >> [21] -1 0 0x0000d800 - 0x0000d81f (0x20) IX[B]
104 >> [22] -1 0 0x00009400 - 0x0000943f (0x40) IX[B]
105 >> [23] -1 0 0x00009800 - 0x000098ff (0x100) IX[B]
106 >> [24] -1 0 0x0000a000 - 0x0000a01f (0x20) IX[B]
107 >> [25] -1 0 0x0000e800 - 0x0000e80f (0x10) IX[B]
108 >> [26] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[B]
109 >> [27] -1 0 0x0000a800 - 0x0000a80f (0x10) IX[B]
110 >> [28] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B]
111 >> [29] 0 0 0x000003c0 - 0x000003df (0x20) IS[B]
112 >>(II) Setting vga for screen 0.
113 >>(==) NVIDIA(0): Depth 8, (==) framebuffer bpp 8
114 >>(==) NVIDIA(0): Default visual is PseudoColor
115 >>(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
116 >>(--) NVIDIA(0): Linear framebuffer at 0xF0000000
117 >>(--) NVIDIA(0): MMIO registers at 0xEE000000
118 >>(EE) NVIDIA(0): Failed to initialize the NVIDIA kernel module!
119 >>(EE) NVIDIA(0): *** Aborting ***
120 >>(II) UnloadModule: "nvidia"
121 >>(EE) Screen(s) found, but none have a usable configuration.
122 >>
123 >>Fatal server error:
124 >>no screens found
125 >>
126 >>Please consult the The X.Org Foundation support
127 >> at http://wiki.X.Org
128 >> for help.
129 >>Please also check the log file at "/var/log/Xorg.0.log" for additional
130 >>information.
131 >>
132 >>
133 >>portage installed me diffferent versions of nvidia-glx and nvidia-kernel
134 >>(1.0.6629-r6 and 1.0.6629-r4) should i install the same version? are there
135 >>newer versions available, or are these known not to work? right now i'm using
136 >>the nv driver, and i have everything i need (kde) working, though i'd like to
137 >>set up my nvidia card to its full capabilities
138 >>thanks
139 >>
140 >>renna
141 >>--
142 >>gentoo-user@g.o mailing list
143 >>
144 >>
145 >
146 >
147 > I used to have a similar problem, and it turned out to be a
148 > misconfiguration of my monitor. Dig out the manual of your monitor,
149 > and try to set the horizontal and vertical sync rates properly. See if
150 > that helps.
151 >
152 > -- Joe
153 >
154 > --
155 > There are 3 kinds of people in the world:
156 > Those who can count, and those who can't.
157 >
158 > Money can't buy everything.
159 > Sometimes money can't even buy a gun...
160 >
161 --
162 gentoo-user@g.o mailing list

Replies

Subject Author
RE: [gentoo-user] failed to load nvidia kernel module Bob Young <BYoung@××××××××××.com>
Re: [gentoo-user] failed to load nvidia kernel module Qian Qiao <qian.qiao@×××××.com>