Pages : 1
#1 Le 09/09/2005, à 12:27
- black_code
DRI driver kernel module missing
bonjour a tous,
voila j'ai suivie le tuto pour avoir la 3D sur ma carte ATI radeon 9700 et tout ce passe pour le mieux sauf au redemarrage, la rien de speciale et c'est la le problème. pas de support 3D en vue donc je verifie les messages dans /var/log/Xorg.0.log et la j'ai :
(WW) fglrx(0): ***********************************************
(WW) fglrx(0): * DRI initialization failed! *
(WW) fglrx(0): * (maybe driver kernel module missing or bad) *
(WW) fglrx(0): * 2D acceleraton available (MMIO) *
(WW) fglrx(0): * no 3D acceleration available *
(WW) fglrx(0): ********************************************* *
voici le resultat de l'execusion de fglrxinfo :
display: :0.0 screen: 0
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.2.1)
et le reultat de fgl_glxgears
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 144 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 32
Current serial number in output stream: 32
comment fair pour ajouter le module DRI alors "si c'est la le problème ?
merci
Dernière modification par black_code (Le 09/09/2005, à 12:30)
Hors ligne
#2 Le 09/09/2005, à 12:42
- dudie
Re : DRI driver kernel module missing
bonjour donc en premier j'ai une même carte graphique que toi.
j'ai galèrer longtemps en installant linux images , et tout et tout
j'ai trouver la solution en fesant:
sudo apt-get install xorg-driver-fglrx
echo fglrx | sudo tee -a /etc/modules
sudo gedit /etc/X11/xorg.conf
Repérez la section [Device] et remplacez la ligne
Driver "ati"
par
Driver "fglrx"
Dans la section [Module] Commentez “Load “extmod” " et rajoutez des lignes afin d’avoir ceci:
# Load "extmod"
SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
redémarrer et plus de problèmes et ca marche a merveilles!!
aussinon pour le dri tu edit ton xorg et dans la selection modules tu ajoute load "dri"
et puis moi j'ai ca en bas de mon xorg :
Section "DRI"
Mode 0666
EndSection
fait gaffe !!! parce-que linux fracas
et Ubuntu ? Ça tue !!
Hors ligne
#3 Le 09/09/2005, à 14:33
- black_code
Re : DRI driver kernel module missing
en fait c'est exactement ce que j'ai fait dailleur voici mon fichier xorg.conf
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands:
#
# cp /etc/X11/xorg.conf /etc/X11/xorg.conf.custom
# sudo sh -c 'md5sum /etc/X11/xorg.conf >/var/lib/xfree86/xorg.conf.md5sum'
# sudo dpkg-reconfigure xserver-xorgSection "Files"
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSectionSection "Module"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
# Load "extmod"
SubSection "extmod"
Option "omit xfree86-dga"
EndSubSection
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "vbe"
EndSectionSection "InputDevice"
Identifier "Generic Keyboard"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr-latin9"
EndSectionSection "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
EndSectionSection "Device"
Identifier "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSectionSection "Monitor"
Identifier "Écran générique"
Option "DPMS"
EndSectionSection "Screen"
Identifier "Default Screen"
Device "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
Monitor "Écran générique"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1440x900"
EndSubSection
SubSection "Display"
Depth 4
Modes "1440x900"
EndSubSection
SubSection "Display"
Depth 8
Modes "1440x900"
EndSubSection
SubSection "Display"
Depth 15
Modes "1440x900"
EndSubSection
SubSection "Display"
Depth 16
Modes "1440x900"
EndSubSection
SubSection "Display"
Depth 24
Modes "1440x900"
EndSubSection
EndSectionSection "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "Synaptics Touchpad"
EndSectionSection "DRI"
Mode 0666
EndSection
et le contenue de /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.ide-cd
ide-disk
ide-generic
lp
mousedev
psmouse
sbp2
sr_mod
fglrx
mais le resultat et le meme pas d'acceleration 3D en vue
toujours a la recherche de la solution
Hors ligne
#4 Le 09/09/2005, à 22:42
- black_code
Re : DRI driver kernel module missing
un petit up
Hors ligne
#5 Le 15/09/2005, à 13:05
- corwin
Re : DRI driver kernel module missing
J'ai aussi le même probleme en migrant de la hoary à la breezy, j'ai essayer en faisant un dist-upgrade et en passant par une installe fraiche de breezy.
J'ai essayer les packages de la Ubuntu et avec l'installeur ATI mais rien en vue... Je continue à plancher sur le problème!
Hors ligne
#6 Le 15/09/2005, à 13:11
- black_code
Re : DRI driver kernel module missing
pareil jusqu'a maintenant je n'est pas de solution mais je poursuit la recherche
Hors ligne