[resolu] Detection second ecran

Bonjour, je souhaite utiliser une double affichage, je peux voir sur ce fil par exemple http://forum.debian-fr.org/viewtopic.php?t=2941&highlight=twinview que le second ecran est ecrit dans le fichier et reconnu par le systeme, ce qui n’est pas mon cas.

le fichier org de mon syteme :

Section "Module"
	Load	"bitmap"
	Load	"dbe"
	Load	"ddc"
	#Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"record"
	Load	"v4l"
	Load	"vbe"
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"		"ImPS/2"
EndSection

Section "Device"
	Identifier	"NVIDIA GeForce FX 5900 XT"
	Driver		"nvidia"
	BusID		"PCI:1:0:0"
EndSection

Section "Monitor"
	Identifier	"Sony"
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"NVIDIA GeForce FX 5900 XT"
	Monitor		"Sony"
	DefaultDepth	24
	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

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
EndSection

Section "DRI"
	Mode	0666
EndSection

L’ecran est branché sur la carte vidéo comme il faut et dpkg-reconfigure xserver-xorg ne le detecte pas.

Quelles manipulations ou commandes faut-il faire pour qu’il soit reconnu par le systeme ?

voici un exemple de dualscreen(edit: ce n’est pas un dual screen, mais un dual desktop) :

[code]Section “ServerLayout”

InputDevice “stylus” “SendCoreEvents”

InputDevice “cursor” “SendCoreEvents”

InputDevice “eraser” “SendCoreEvents”

Identifier     "Default Layout"
Screen         "Default Screen" 0 1
Screen        "Screen2" RightOf "Default Screen"
InputDevice    "Generic Keyboard"
InputDevice    "Configured Mouse"

EndSection

Section “Files”

# path to defoma fonts
FontPath        "/usr/share/X11/fonts/misc"
FontPath        "/usr/share/X11/fonts/cyrillic"
FontPath        "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath        "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath        "/usr/share/X11/fonts/Type1"
FontPath        "/usr/share/X11/fonts/100dpi"
FontPath        "/usr/share/X11/fonts/75dpi"
FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"

EndSection

Section "Module"
Load "bitmap"
Load "ddc"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "v4l"
Load "vbe"
EndSection

Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option “XkbRules” "xorg"
Option “XkbModel” "pc105"
Option “XkbLayout” "fr-latin9"
Option “XkbVariant” "fr"
EndSection

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option “Buttons” "7"
Option “Device” "/dev/input/mice"
Option “Protocol” "ExplorerPS/2"
Option “ZAxisMapping” "4 5"
Option “Emulate3Buttons” "true"
Option “ButtonMapping” "1 2 3 6 7"
EndSection

Section "Monitor"
Identifier "Screen1"
HorizSync 30.0 - 65.0
VertRefresh 50.0 - 75.0
Option "DPMS"
EndSection

Section "Monitor"
Identifier "Screen2"
Option "DPMS"
HorizSync 30.0 - 65.0
VertRefresh 50.0 - 75.0
EndSection

Section "Device"
Identifier "NVIDIA Corporation NVIDIA Default Card"
Driver "nvidia"
BusID "PCI:1:0:0"
Screen 0
EndSection

Section "Device"
Identifier "NVIDIA Corporation NVIDIA Default Card2"
Driver "nvidia"
BusID "PCI:1:0:0"
Screen 1
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA Corporation NVIDIA Default Card"
Monitor "Screen1"
DefaultDepth 24
SubSection "Display"
Depth 8
Modes “1280x1024” “1024x768” "800x600"
EndSubSection
SubSection "Display"
Depth 16
Modes “1280x1024” “1024x768” "800x600"
EndSubSection
SubSection "Display"
Depth 24
Modes “1280x1024” “1024x768” "800x600"
EndSubSection
EndSection

Section "Screen"
Identifier "Screen 2"
Device "NVIDIA Corporation NVIDIA Default Card2"
Monitor "Screen2"
DefaultDepth 24
SubSection "Display"
Depth 8
Modes “1280x1024” “1024x768” "800x600"
EndSubSection
SubSection "Display"
Depth 16
Modes “1280x1024” “1024x768” "800x600"
EndSubSection
SubSection "Display"
Depth 24
Modes “1280x1024” “1024x768” "800x600"
EndSubSection
EndSection[/code]

je pense que tu peut t’en inspirer :wink:

renome le tiens en xorg.conf.bak et copie celui-ci. Les fréquences de rafraichissements et résolutions sont à adapter…

au fait tous ces gens là ont modifiés leurs fichiers xorg.conf à la main, tu vas devoir en passer par là.

je confirme que mon fichier xorg.conf a plus ou moins la même tête que celui de “le_petit_chat_noir mais qui est vert sur la photo” et que ça marche, et que j’ai du passer aussi par la modification à la main.

Les deux écrans fonctionnent.

mon fichier xorg en partie

[code]Section "Module"
Load "bitmap"
Load "dbe"
Load “ddc”
#Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "v4l"
Load "vbe"
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” "ImPS/2"
EndSection

Section "Device"
Identifier "NVIDIA GeForce FX 5900 XT"
Driver "nvidia"
BusID "PCI:1:0:0"
Option “xinerama” "off"
Option “NoLogo” "1"
Option “TwinView” "true"
Option “TwinViewOrientation” "LeftOf"
EndSection

Section "Monitor"
Identifier "Sony"
Option "DPMS"
EndSection

Section "Monitor"
Identifier "NoName"
Option "DPMS"
EndSection

Section "Screen"
Identifier "Default Screen"
Device "NVIDIA GeForce FX 5900 XT"
Monitor "Sony"
DefaultDepth 24
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

Section "Screen"
Identifier "Cloned Screen"
Device "NVIDIA GeForce FX 5900 XT"
Monitor "NoName"
DefaultDepth 24
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

Section "ServerLayout"
Identifier "TwinView Configuration"
Screen "Default Screen"
Screen "Cloned Screen"
Option “Xinerama” "Off"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode 0666
EndSection[/code]

Quelques petites questions :

L’option Xinerama, bien que “off” à mon gout, doit-il se trouver dans la section “Device” ou dans la section “ServerLayout” ?

J’ai l’impression d’avoir trop d’affichage dans la section “Screen”, j’aimerai utiliser les deux ecrans en depth 24 et en 1024*768 par defaut

SubSection "Display" Depth 24 Modes "1024x768" "800x600" EndSubSectionserait-il judicieu de garder uniquement cette configuration ?

A quoi correspond l’option “Metamodes” que je n’ai pas mis dans la section 'Device" ?

Voici le lien d’un article qui m’a aussi aidé
http://www.ryxeo.com/index.php/2003/06/01/89-lexique-la-gestion-du-double-ecran-ou-dual-screen

et son contenu au cas ou l’article viendrait à disparaitre :

Généralités

Vous pouvez faire à peu près tout ce que vous voulez avec plusieurs écrans sous Linux: soit demander au système d’agréger les deux écrans pour en faire un seul très large où très haut. Soit d’avoir deux écrans “non collés”. Dans le 1er cas de figure vous pourrez attraper une fenêtre de l’écran numéro 1 et la glisser jusqu’à l’écran numéro deux. Dans le second cas vous devrez lancer le logiciel depuis l’écran 2 si vous le voulez sur cet espace de travail.

ATI Radeon (une seule carte, utilisation des sorties DVI et VGA)

[code]# /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 command:

sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath “/usr/share/X11/fonts/75dpi”
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
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 “ZAxisMapping” "4 5"
Option “Emulate3Buttons” "true"
EndSection

Section "Device"
Identifier "ATIRadeon X300 (PCIE) 0"
Driver "ati"
BusID "PCI:2:0:0"
Screen 0
EndSection

Section "Device"
Identifier "ATIRadeon X300 (PCIE) 1"
Driver "ati"
BusID "PCI:2:0:0"
Screen 1
EndSection

Section "Monitor"
Identifier "Samsung"
Option "DPMS"
EndSection

Section "Monitor"
Identifier "Daewoo"
Option "DPMS"
EndSection

Section "Screen"
Device "ATIRadeon X300 (PCIE) 0"
Identifier "Samsung Screen"
Monitor "Samsung"
DefaultDepth 24
SubSection "Display"
Depth 8
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "Daewoo Screen"
Device "ATIRadeon X300 (PCIE) 1"
Monitor "Daewoo"
DefaultDepth 24
SubSection "Display"
Depth 8
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen “Samsung Screen” 0 0
Screen “Daewoo Screen” RightOf "Samsung Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
Option “xinerama” "true"
EndSection

Section "DRI"
Mode 0666
EndSection[/code]

ATI Radeon + Nvidia

[code]# /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 command:

sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/CID"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath “/usr/share/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"
EndSection

Section "Module"
Load "GLcore"
Load "bitmap"
Load "dbe"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "record"
Load "type1"
Load "v4l"
Load "vbe"
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” "ImPS/2"
Option “ZAxisMapping” "4 5"
EndSection

Section "Device"
Identifier "Nvidia AGP"
Driver "nv"
BusID "PCI:1:0:0"
Option “AGPMode” "4"
Option “DMAForXv” "true"
Option “DDCMode” "true"
EndSection

Section "Device"
Identifier "ATI Radeon"
Driver "ati"
BusID "PCI:3:0:0"
Option “DMAForXv” "true"
Option “DDCMode” "true"
EndSection

Section "Monitor"
Identifier "LCD"
Option "DPMS"
HorizSync 28-64
VertRefresh 43-60
EndSection

Section "Screen"
Identifier "LCD 1"
Device "Nvidia AGP"
Monitor "LCD"
DefaultDepth 16
SubSection "Display"
Depth 16
ViewPort 0 0
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "LCD 2"
Monitor "LCD"
Device "ATI Radeon"
DefaultDepth 16
SubSection "Display"
ViewPort 0 0
Depth 16
Modes “1280x1024” “1024x768” “800x600” "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "dual-head-home"
Screen "LCD 1"
Screen “LCD 2” RightOf "LCD 1"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
Option “xinerama” "true"
EndSection

Section "DRI"
Mode 0666
EndSection[/code]

Nvidia

[code]# /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 command:

sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
FontPath "/usr/share/X11/fonts/misc"
FontPath "/usr/share/X11/fonts/cyrillic"
FontPath "/usr/share/X11/fonts/100dpi/:unscaled"
FontPath "/usr/share/X11/fonts/75dpi/:unscaled"
FontPath "/usr/share/X11/fonts/Type1"
FontPath "/usr/share/X11/fonts/100dpi"
FontPath “/usr/share/X11/fonts/75dpi”
# path to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
Load "i2c"
Load "bitmap"
Load “ddc”
#Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "type1"
Load "vbe"
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 “ZAxisMapping” "4 5"
Option “Emulate3Buttons” "true"
EndSection

Section "Device"
Identifier "GeForce6200"
Driver "nvidia"
Option “TwinView” "true"
Option “RenderAccel” "1"
Option “CursorShadow” "0"
Option “Coolbits” "0"
Option “ConnectedMonitor” "lcd, lcd"
Option "NoPowerConnectorCheck"
Option “Metamodes” "1280x1024,1680x1050; 1280x1024,1280x1024; 1024x768,1024x768; 1280x1024,NULL; 1024x768,NULL"
Option “SecondMonitorHorizSync” "30-150"
Option “SecondMonitorVertRefresh” "60-100"
Option “TwinViewOrientation” "LeftOf"
EndSection

Section "Monitor"
Identifier "B70A"
Option "DPMS"
HorizSync 30 - 150
VertRefresh 50 - 75
EndSection

Section "Monitor"
Identifier "22pouces"
Option "DPMS"
HorizSync 30-150
VertRefresh 31 - 80
EndSection

Section "Screen"
Identifier "Default Screen"
Device "GeForce6200"
Monitor "B70A"
DefaultDepth 24
SubSection "Display"
Depth 16
Modes “1680x1050” “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes “1680x1050” “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
EndSection

Section "Screen"
Identifier "Cloned Screen"
Device "GeForce6200"
Monitor "22pouces"
DefaultDepth 24
SubSection "Display"
Depth 16
Modes “1680x1050” “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes “1680x1050” “1280x1024” “1024x768” “832x624” “800x600” “720x400” "640x480"
EndSubSection
EndSection

Section "ServerLayout"
Identifier "TwinView Configuration"
Screen "Default Screen"
Screen "Cloned Screen"
Option “Xinerama” "Off"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section “DRI”

Mode 0666

EndSection[/code]

J’ai suivi vos fichier Xorg.conf mais impossible d’utiliser mon deuxième écran.
Comme particularité, mes deux écrans sont strictement identiques ma carte est une nvidia, les pilotes nvidia-glx sont installés
Au moment du démarrage d’X tout se passe bien sauf que je n’ai pas le deuxième écran !
voici mon 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 command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Files"
	FontPath	"/usr/share/X11/fonts/misc"
	FontPath	"/usr/share/X11/fonts/cyrillic"
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/Type1"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
	FontPath	"/usr/share/fonts/X11/misc"
	# path to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"fr"
	Option		"XkbOptions"	"lv3:ralt_switch"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ExplorerPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection



Section "Device"
	Identifier	"NVIDIA Corporation NV44 [GeForce 6200 TurboCache]"
	Driver		"nvidia"
	BusID		"PCI:5:0:0"
	Screen 0
EndSection

Section "Device"
	Identifier	"NVIDIA Corporation NV44 [GeForce 6200 TurboCache] - 2"
	Driver		"nvidia"
	BusID		"PCI:5:0:0"
	Screen 1
EndSection

Section "Monitor"
	Identifier	"Monitor1"
	Option		"DPMS"
	HorizSync	28-64
	VertRefresh	43-60
EndSection

Section "Monitor"
	Identifier	"Monitor2"
	Option		"DPMS"
	HorizSync	28-64
	VertRefresh	43-60
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"NVIDIA Corporation NV44 [GeForce 6200 TurboCache]"
	Monitor		"Monitor1"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
EndSection

Section "Screen"
	Identifier	"Screen 2"
	Device		"NVIDIA Corporation NV44 [GeForce 6200 TurboCache] - 2"
	Monitor		"Monitor2"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1280x1024" "1280x800" "1152x864" "1024x768" "832x624" "800x600" "720x400" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen" 0 1
	Screen		"Screen 2" RightOf "Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
EndSection

Section "DRI"
	Mode	0666
EndSection

La seule chose qui te différentie de le_petit_chat_noir, c’est ta section DRI.
Sinon, c’est vrai que ça devrait marcher.
Tu as essayé le twinview ?

Le plus sage serait de faire un nouveau topic :wink: