View previous topic :: View next topic |
Author |
Message |
Rouxdesecour n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 08 Nov 2005 Posts: 1
|
Posted: Tue Nov 08, 2005 3:49 pm Post subject: [nvidia] Failed to initialize the NVIDIA kernel module! |
|
|
bonjour,
Je possède un amd64, avec un geforce 6600gt. J'ai installé les drivers nvidia
avec emerge nvidia-glx utilisant l'arbre de portage mis a jour il y a 2 semaine tout en suivant le guide
de la doc gentoo.
Mais lorsque je démarre startx avec les drivers nvidia, j'ai le joli message:
Code: | 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 0xC0000000
(--) NVIDIA(0): MMIO registers at 0xC8000000
(EE) NVIDIA(0): Failed to initialize the NVIDIA kernel module!
(EE) NVIDIA(0): *** Aborting ***
(II) UnloadModule: "nvidia"
(EE) Screen(s) found, but none have a usable configuration.
Fatal server error:
no screens found |
Je pense avoir tout vérifier mais rien ne change .
Voici le xorg.conf(dite moi si il est trop grand et que je dois l'enlever):
Code: |
# **********************************************************************
# Files section. This allows default font and rgb paths to be set
# **********************************************************************
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/75dpi/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/local/"
EndSection
# **********************************************************************
# Module section -- this section is used to specify
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 "freetype"
# This loads the GLX module
Load "glx" # libglx.a
# Load "dri" # libdri.a
EndSection
# **********************************************************************
# Input device section
# **********************************************************************
Section "InputDevice"
Identifier "sourisRoux"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/input/mice"
EndSection
Section "InputDevice"
Identifier "clavierRoux"
Driver "keyboard"
Option "XkbModel" "pc104"
Option "XkbLayout" "fr"
EndSection
# **********************************************************************
# Graphics device section
Section "Device"
# unsupported card
# VideoRam 131072
Identifier "6600Roux"
Driver "nv"
# ChipSet "GeForce 6600 GT"
# Card "GeForce 6600 GT"
# BusID " "
EndSection
# **********************************************************************
# Monitor section
Section "Monitor"
Identifier "Monitor0"
HorizSync 31.5 - 92.0
VertRefresh 50.0 - 90.0
Option "DPMS"
EndSection
# **********************************************************************
# Screen sections
Section "Screen"
Identifier "ScreenRoux"
Device "6600Roux"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "1024x768"
EndSubSection
EndSection
# **********************************************************************
# ServerLayout sections.
Section "ServerLayout"
Identifier "Server Layout"
Screen "ScreenRoux"
InputDevice "sourisRoux" "CorePointer"
InputDevice "clavierRoux" "CoreKeyboard"
EndSection |
Donc voila, si vous avez un indice ou la connaissance magique de gentoo ça serait cool :p
merci d'avance |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Adrien Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/212969820843e8bba236eee.jpg)
Joined: 13 Jul 2004 Posts: 2326 Location: Bretagne
|
Posted: Tue Nov 08, 2005 3:52 pm Post subject: |
|
|
Salut et bienvenue sur le forum!
Ton module se charge-t-il bien au boot?
De toute façon, tu vas devoir remplacer ça:
Code: | Section "Device"
# unsupported card
# VideoRam 131072
Identifier "6600Roux"
Driver "nv"
# ChipSet "GeForce 6600 GT"
# Card "GeForce 6600 GT"
# BusID " "
EndSection |
par ça:
Code: | Section "Device"
# unsupported card
# VideoRam 131072
Identifier "6600Roux"
Driver "nvidia"
# ChipSet "GeForce 6600 GT"
# Card "GeForce 6600 GT"
# BusID " "
EndSection |
+++ |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
kopp Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/134104650145d8aeb7e9db3.gif)
Joined: 09 Apr 2004 Posts: 2885 Location: Grenoble, France
|
Posted: Tue Nov 08, 2005 5:51 pm Post subject: |
|
|
Ce qui est étrange, c'est qu'il cherche à charger le module nvidia, malgré l'erreur de configuration...
Sinon, pour vérifier s'il est chargé, lsmod, s'il ne l'est pas, modprobe nvidia pour le charger sur le champ, et rajoute nvidia dans fichier /etc/modules.autoload.d/kernel-2.6
De plus, je vois qu'il parle de framebuffer dans le log, utilises tu le pilote framebuffer nvidiafb, si oui, il n'est pas compatible avec les pilotes nvidia... |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Maskim n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 20 Feb 2005 Posts: 40
|
Posted: Tue Nov 08, 2005 7:37 pm Post subject: |
|
|
J'avais une erreur similaire avant. Je l'ai résolu en installant la dernière version des drivers nvidia (en les démasquant au préalable). |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Mickael Advocate
![Advocate Advocate](/images/ranks/rank-G-1-advocate.gif)
![](images/avatars/203102811045d98d1102042.png)
Joined: 05 Sep 2005 Posts: 2387 Location: ~Belfort! - France - EU
|
Posted: Wed Nov 09, 2005 7:59 am Post subject: |
|
|
@Maskim : exact les drivers nvidia stables ne marchent pas avec le dernier noyau gentoo.
Il faut donc qu tu suives les conseils de Maskin et utilises les drivers nvidia maskés.
P.S : cela a déjà été mentionné dans le forum il y a peut de temps. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
l.slysz Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
Joined: 03 Jun 2005 Posts: 256
|
Posted: Wed Nov 09, 2005 9:57 am Post subject: |
|
|
Bonjour,
J'ai deja bataillé assez serieusement avec la config de Rouxdesecour (on peut bien faire ça pour un binome de stage )
- le nv qu'il affiche dans son xorg.conf c'est simplement l'etat actuel du fichier afin de pouvoir lancer xorg, sinon ses tests se font bien evidement avec nvidia comme driver, ça va de soit.
- le module est bien chargé au boot (lsmod le trouve).
- les drivers stables et instables ont été essayé sans succes
- pour ce qui est du nvidiafb, je reconnais ne pas y avoir penser ...
à toi de jouer Rouxdesecour ![Smile :)](images/smiles/icon_smile.gif) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
Ophilim n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 06 Nov 2005 Posts: 6
|
Posted: Wed Nov 09, 2005 10:23 am Post subject: |
|
|
Salut Rouxdesecour
j'ai également une 6600GT, et je n'ai eu aucun problème pour installer xorg en suivant le howto gentoo :
http://www.gentoo.org/doc/fr/xorg-config.xml
peut être pourrais tu essayer de faire une sauvegarde de ton fichier de xorg.conf puis de réemerger :
Code: |
nvidia-kernel
nvidia-glx
|
faire un "modprobe nvidia" puis tenter la génération automatique du fichier xorg.conf comme indiqué dans le howto
bon courage |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
l.slysz Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
Joined: 03 Jun 2005 Posts: 256
|
Posted: Mon Nov 14, 2005 7:59 pm Post subject: |
|
|
up
rouxdesecour est à la limite du je laisse tomber
nouveauté par rapport à mon dernier passage :
pas de probleme avec le nvidiafb, puisque vesa
voila voila, si quelqu'un a une idée .... |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
netfab Veteran
![Veteran Veteran](/images/ranks/rank_rect_5_vet.gif)
Joined: 03 Mar 2005 Posts: 1964 Location: 127.0.0.1
|
Posted: Mon Nov 14, 2005 8:14 pm Post subject: |
|
|
Salut,
Et s'il essayait cette solution ? (un de plus ?) |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|