Lors de la dernière mise à jour, mon serveur X n’a pas voulu se relancer. J’ai donc fait :
- dpkg-reconfigure xserver-xorg pour regénérer un fichier xorg.conf qui s’est retrouvé différent du précédent.
- J’ai remis dans ce fichier xorg.conf les options indiquées dans le tuto du petit chat noir sur Beryl + Drivers nVidia dans Truc et Astuces.
J’ai relancé X et ça fonctionne. Je suis par contre encore sur les pilotes nVidia 9746.
dpkg -l | grep xorg | head -5
ii xorg 1:7.2-3 X.Org X Window System
ii xorg-dev 1:7.2-3 the X.Org X Window System development librar
ii xorg-docs 1:1.4-2 Miscellaneous documentation for the X.Org so
ii xserver-xorg 1:7.2-3 the X.Org X server
ii xserver-xorg-core 2:1.3.0.0.dfsg-6 X.Org X server -- core server
dpkg -l | grep nvidia
ii nvidia-cg-toolkit 1.5.0.0019-1 NVIDIA Cg Toolkit installer
ii nvidia-glx 1.0.9746-2 NVIDIA binary binary kernel module for Linux 2.6.17
ii nvidia-kernel-2.6.18-4-k7 1.0.9746-2 NVIDIA binary kernel module for Linux 2.6.18
ii nvidia-kernel-common 20051028+1 NVIDIA binary kernel module common files
ii nvidia-kernel-source 1.0.9746-2 NVIDIA binary kernel module source
ii nvidia-settings 1.0+20060516-3 Tool of configuring the NVIDIA graphics driv
ii nvidia-xconfig 1.0+20070502-1 The NVIDIA X Configuration Tool
Mon xorg.conf :
[code]# 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 xorg.conf manual page.
(Type “man 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 command:
sudo dpkg-reconfigure -phigh xserver-xorg
Section "Files"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option “XkbRules” "xorg"
Option “XkbModel” "pc105"
Option “XkbLayout” "fr"
Option “XkbVariant” "latin9"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option “Device” "/dev/input/mice"
Option “Protocol” "ExplorerPS/2"
Option “Emulate3Buttons” "true"
EndSection
Section "Device"
Identifier "Carte vidéo générique"
Driver "nvidia"
BusID "PCI:1:0:0"
Option “RenderAccel” "true"
Option “AllowGLXWithComposite” "true"
EndSection
Section "Monitor"
Identifier "Écran générique"
Option "DPMS"
HorizSync 28-64
VertRefresh 43-60
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Carte vidéo générique"
Monitor "Écran générique"
Option “AddARGBGLXVisuals” "True"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Section "Extensions"
Option “Composite” "Enable"
EndSection
[/code]