Je pense avoir suivi le tutorial du site Léa pour l'installation du driver de Nvidia, comme je le dis dans le titre j'ai une carte graphique NVidia TNT2 M64.
Quand je lance le serveur XFree par la commande startX, l'écran clignote plusieurs fois, puis revient à la ligne de commande.
Je vais vous montrer quelques lignes des fichiers qui me semblent nécessaire au fonctionnement du serveur X.
Un petit ls dans les drivers vidéo pour le noyau
Code :
- total 1092
- -rw-rw-r-- 1 root root 1112996 Dec 22 12:57 NVdriver
|
Un petit lsmod après le lancement du serveur X
Code :
- Module Size Used by Tainted: P
- NVdriver 988096 0 (autoclean)
|
Une petite partie du fichier /etc/modules.conf
Code :
- alias cipher-17 rc5
- alias char-major-195 NVdriver
- ### update-modules: end processing /etc/modutils/aliases
|
Une petite partie des logs de XFree
Code :
- (II) Loading sub module "vgahw"
- (II) LoadModule: "vgahw"
- (II) Loading /usr/X11R6/lib/modules/libvgahw.a
- (II) Module vgahw: vendor="The XFree86 Project"
- compiled for 4.1.0.1, module version = 0.1.0
- ABI class: XFree86 Video Driver, version 0.4
- (**) NVIDIA(0): Depth 16, (--) framebuffer bpp 16
- (==) NVIDIA(0): RGB weight 565
- (==) NVIDIA(0): Default visual is TrueColor
- (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
- (--) NVIDIA(0): Linear framebuffer at 0xCA000000
- (--) NVIDIA(0): MMIO registers at 0xCE000000
- (EE) NVIDIA(0): Failed to initialize the NVdriver kernel module!
- (EE) NVIDIA(0): *** Aborting ***
- (II) UnloadModule: "nvidia"
- (II) UnloadModule: "vgahw"
- (II) Unloading /usr/X11R6/lib/modules/libvgahw.a
- (EE) Screen(s) found, but none have a usable configuration.
- Fatal server error:
- no screens found
|
Une ptite partie du fichier XF86Config-4
Code :
- Section "Module"
- # Load "GLcore"
- # Load "bitmap"
- Load "dbe"
- # Load "ddc"
- # Load "dri"
- Load "extmod"
- Load "freetype"
- # Load "glx"
- # Load "int10"
- # Load "pex5"
- # Load "record"
- # Load "speedo"
- Load "type1"
- # Load "vbe"
- # Load "xie"
- EndSection
- Section "Device"
- Identifier "NVidia TNT2 M64"
- # Driver "nv"
- Driver "nvidia"
- # VideoRam 32000
- EndSection
- Section "Screen"
- Identifier "Default Screen"
- Device "NVidia TNT2 M64"
- Monitor "TVM AS6S"
- DefaultDepth 16
- SubSection "Display"
- Depth 1
- Modes "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 4
- Modes "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 8
- Modes "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 15
- Modes "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 16
- Modes "1024x768" "800x600" "640x480"
- EndSubSection
- SubSection "Display"
- Depth 24
- Modes "1024x768" "800x600" "640x480"
- EndSubSection
- EndSection
|