Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
2418 connectés 

  FORUM HardWare.fr
  Linux et OS Alternatifs
  Multimédia

  [RESOLU]Debian - Xorg - Nvidia - bi écran

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

[RESOLU]Debian - Xorg - Nvidia - bi écran

n°842893
asanque
Posté le 13-09-2006 à 22:42:43  profilanswer
 

Bonsoir,
 
J'ai une Debian Sid qui me sert de workstation.
Elle possède une carte vidéo GEforce 6200 (MSI mX6200AX pour être précis).
Cette carte possède deux sorties : une DVI et une VGA. Sur la DVI est branchée un Samsung 205BW et sur la VGA un Samsung 710T.
 
J'ai installé les drivers propriétaires de Nvidia. Et je tente de configurer le bi écran. Malgré pas mal de tuto et de forums, pas moyen d'y arriver.
Déjà la commande : "gtf -X 1680 1050 75" me renvoie "bash: gtf: command not found" et pas moyen de trouver le paquet gtf. C'est un paquet virtuel ou un truc du genre ? Que dois-je installer pour pouvoir utiliser gtf ?
 
 
Ensuite, voici un extrait de mon xorg.conf :  
 
------------------------------------------------
Section "ServerLayout"
   Identifier     "Simple Layout"
   Screen         "Screen 1" 0 0
   InputDevice    "Mouse1" "CorePointer"
   InputDevice    "Keyboard1" "CoreKeyboard"
EndSection
 
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
 
 
Section "Module"
   Load           "dbe"          # Double buffer extension
   Load           "bitmap"
   Load           "ddc"
   Load           "extmod"
   Load           "int10"
   Load           "record"
   Load           "vbe"
   Load           "type1"
   Load           "freetype"
   Load           "glx"
EndSection
 
Section "Monitor"
   Identifier     "205bwgauche"
   HorizSync       30.0 - 81.0
   VertRefresh     56.0 - 75.0
ModeLine "1680x1050" 199.18 1680 1752 2112 2256 1050 1052 1064 1090 #81Hz
EndSection
 
Section "Device"
   Identifier     "Nvidia Geforce 6200"
   Driver         "nvidia"
   Option      "TwinView"
   Option      "NoTwinViewXineramaInfo"   "true"
   Option      "SecondMonitorHorizSync"   "30.0-81.0"
   Option      "SecondMonitorVertRefresh" "56.0-75.0"
   Option      "TwinViewOrientation"      "RightOf"
   Option      "MetaModes"                "1680x1050,1280x1024"
   Option      "ConnectedMonitor"         "dvi,crt"
EndSection
 
Section "Screen"
   Identifier     "Screen 1"
   Device         "Nvidia Geforce 6200"
   Monitor        "205bwgauche"
   DefaultDepth    24
   Option         "NoLogo" "true"
   SubSection     "Display"
       Viewport    0 0
       Depth       8
       Modes      "1680x1050" "640x480"
   EndSubSection
   SubSection     "Display"
       Viewport    0 0
       Depth       16
       Modes      "1680x1050" "640x480"
   EndSubSection
   SubSection     "Display"
       Viewport    0 0
       Depth       24
       Modes      "1680x1050" "640x480"
   EndSubSection
EndSection
 --------------------------------------------------------------------------
 
Pas moyen d'avoir les deux écrans en même temps.
Si je joue sur le paramètre ConnectedMonitor j'arrive à avoir l'un ou l'autre mais jamais les deux.
 
 
Merci.


Message édité par asanque le 15-09-2006 à 22:21:45
mood
Publicité
Posté le 13-09-2006 à 22:42:43  profilanswer
 

n°842923
depx
Posté le 14-09-2006 à 01:50:09  profilanswer
 

salut,
 
adaptes ce xorg.conf qui marche à ta config :
 

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 "Keyboard0"
 Driver "kbd"
 Option "CoreKeyboard"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "fr"
EndSection
 
Section "InputDevice"
 Identifier "Mouse0"
 Driver "mouse"
 Option "CorePointer"
 Option "Device"   "/dev/input/mice"
 Option "Protocol"  "ExplorerPS/2"
  Option "ZAxisMapping" "4 5"
 Option "Emulate3Buttons" "true"
EndSection
 
 
Section "Device"
 Identifier "Card0"
 Driver "nvidia"
 BusID "PCI:3:0:0"
 Option "TwinView"   "on"
 Option  "MetaModes"    "CRT-0:1024x768,CRT-1:1024x768;"
 Option "TwinViewOrientation" "CRT-0 RightOf CRT-1"
 Option  "ConnectedMonitor"         "CRT-0,CRT-1"
EndSection
 
Section "Monitor"
 Identifier "Monitor0"
 Option "DPMS"
EndSection
 
Section "Screen"
 Identifier  "Screen0"
 Device  "Card0"
 Monitor  "Monitor0"
 DefaultDepth 24
 SubSection "Display"
  Depth 24
  Modes "1024x768"
 EndSubSection
EndSection
 
Section "ServerLayout"
 Identifier  "Layout0"
 Screen  "Screen0"
 InputDevice "Keyboard0"
 InputDevice "Mouse0"
EndSection
 
Section "DRI"
 Mode 0666
EndSection

Message cité 1 fois
Message édité par depx le 14-09-2006 à 01:51:36
n°843131
christophe​62110
Chti mi bien sympa
Posté le 14-09-2006 à 18:36:01  profilanswer
 

depx a écrit :

salut,
 
adaptes ce xorg.conf qui marche à ta config :
 

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 "Keyboard0"
 Driver "kbd"
 Option "CoreKeyboard"
 Option "XkbRules" "xorg"
 Option "XkbModel" "pc105"
 Option "XkbLayout" "fr"
EndSection
 
Section "InputDevice"
 Identifier "Mouse0"
 Driver "mouse"
 Option "CorePointer"
 Option "Device"   "/dev/input/mice"
 Option "Protocol"  "ExplorerPS/2"
  Option "ZAxisMapping" "4 5"
 Option "Emulate3Buttons" "true"
EndSection
 
 
Section "Device"
 Identifier "Card0"
 Driver "nvidia"
 BusID "PCI:3:0:0"
 Option "TwinView"   "on"
 Option  "MetaModes"    "CRT-0:1024x768,CRT-1:1024x768;"
 Option "TwinViewOrientation" "CRT-0 RightOf CRT-1"
 Option  "ConnectedMonitor"         "CRT-0,CRT-1"
EndSection
 
Section "Monitor"
 Identifier "Monitor0"
 Option "DPMS"
EndSection
 
Section "Screen"
 Identifier  "Screen0"
 Device  "Card0"
 Monitor  "Monitor0"
 DefaultDepth 24
 SubSection "Display"
  Depth 24
  Modes "1024x768"
 EndSubSection
EndSection
 
Section "ServerLayout"
 Identifier  "Layout0"
 Screen  "Screen0"
 InputDevice "Keyboard0"
 InputDevice "Mouse0"
EndSection
 
Section "DRI"
 Mode 0666
EndSection



 
... En oubliant pas avant de faire un lspci | grep VGA pour adapter le bus ID PCI (chez moi c'est 1:0,0 =>> mettre 1:0:0 dans le xorg.conf)
Juste comme ca en passant :whistle:  :D
 
EDIT : Sinon j'ai un autre type de xorg.conf qui n'utilise pas le twinview et qui fonctionne (Moniteur PC+ TV), si ca t'intéresse


Message édité par christophe62110 le 14-09-2006 à 18:37:38

---------------
Tout problème a sa solution qu'elle soit logique... ou illogique ! et si y'a pas de solution....... Ben c'est qu'il n'y a pas de problème
n°843215
asanque
Posté le 14-09-2006 à 23:22:41  profilanswer
 

clochette:/home/ben# lspci | grep VGA
02:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6200] (rev a1)
 
Du coup j'ai modifié le xorg.conf comme suit :
-------------------------------------------------------------
Section "Device"
   Identifier     "Nvidia Geforce 6200"
   Driver         "nvidia"
   BusID        "2:0:0"
   Option      "TwinView" "on"
   Option      "NoTwinViewXineramaInfo"   "true"
   Option      "SecondMonitorHorizSync"   "30.0-81.0"
   Option      "SecondMonitorVertRefresh" "56.0-75.0"
   Option      "TwinViewOrientation"      "RightOf"
   Option      "MetaModes"                "1680x1050,1280x1024"
   Option      "ConnectedMonitor"         "DFP,CRT"
EndSection
 
Section "Device"
   Identifier     "Nvidia Geforce 6200"
   Driver         "nvidia"
   BusID        "2:0:0"
   Option      "TwinView" "on"
   Option      "NoTwinViewXineramaInfo"   "true"
   Option      "SecondMonitorHorizSync"   "30.0-81.0"
   Option      "SecondMonitorVertRefresh" "56.0-75.0"
   Option      "TwinViewOrientation"      "RightOf"
   Option      "MetaModes"                "1680x1050,1280x1024"
   Option      "ConnectedMonitor"         "DFP,CRT"
EndSection
 
-----------------------------------------------------------
Avec "DFP,CRT" c'est le 205BW en DVI qui fonctionne.
Avec "DVI,CRT" c'est le 710T en VGA qui fonctionne.
Mais toujours pas les deux en même temps.

n°843508
asanque
Posté le 15-09-2006 à 22:00:34  profilanswer
 

Hop, un copier-coller du log :
 
------------------------------------------------------------------------------------
 
X Window System Version 7.0.0
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 7.0
Build Operating System:Linux 2.6.17-1-686 i686
Current Operating System: Linux clochette 2.6.17-2-k7 #1 SMP Thu Aug 31 13:27:53 UTC 2006 i686
Build Date: 16 March 2006
 Before reporting problems, check http://wiki.x.org
 to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep 15 21:55:24 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Simple Layout"
(**) |-->Screen "Screen 1" (0)
(**) |   |-->Monitor "205bwgauche"
(**) |   |-->Device "Nvidia Geforce 6200"
(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Keyboard1"
(WW) The directory "/usr/share/fonts/misc/" does not exist.
 Entry deleted from font path.
(WW) The directory "/usr/share/fonts/TTF/" does not exist.
 Entry deleted from font path.
(WW) The directory "/usr/share/fonts/Type1/" does not exist.
 Entry deleted from font path.
(WW) The directory "/usr/share/fonts/75dpi/" does not exist.
 Entry deleted from font path.
(WW) The directory "/usr/share/fonts/100dpi/" does not exist.
 Entry deleted from font path.
(WW) The directory "/usr/share/fonts/local/" does not exist.
 Entry deleted from font path.
(WW) FontPath is completely invalid.  Using compiled-in default.
(==) FontPath set to "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/CID/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
(**) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
Couldn't open RGB_DB '/usr/X11R6/lib/X11/rgb'
(II) Module ABI versions:
 X.Org ANSI C Emulation: 0.2
 X.Org Video Driver: 0.8
 X.Org XInput driver : 0.5
 X.Org Server Extension : 0.2
 X.Org Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 0.8
(++) using VT number 7
 
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,01e0 card 0000,0000 rev a2 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,01eb card 1565,1400 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,01ee card 1565,1400 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,01ed card 1565,1400 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:4: chip 10de,01ec card 1565,1400 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:00:5: chip 10de,01ef card 1565,1400 rev a2 class 05,00,00 hdr 80
(II) PCI: 00:01:0: chip 10de,0060 card 1565,3400 rev a4 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0064 card 1565,3400 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,0067 card 1565,3400 rev a4 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,0067 card 1565,3400 rev a4 class 0c,03,10 hdr 80
(II) PCI: 00:02:2: chip 10de,0068 card 1565,3400 rev a4 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0066 card 1565,2301 rev a1 class 02,00,00 hdr 00
(II) PCI: 00:05:0: chip 10de,006b card 1565,8201 rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,006a card 1565,8201 rev a1 class 04,01,00 hdr 00
(II) PCI: 00:08:0: chip 10de,006c card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,0065 card 1565,3400 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:0d:0: chip 10de,006e card 1565,4100 rev a3 class 0c,00,10 hdr 00
(II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev a2 class 06,04,00 hdr 01
(II) PCI: 01:08:0: chip 1106,3149 card 1106,3149 rev 50 class 01,04,00 hdr 00
(II) PCI: 02:00:0: chip 10de,0221 card 1462,0130 rev a1 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,2), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
 [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x0202 (VGA_EN is cleared)
(II) Bus 1 I/O range:
 [0] -1 0 0x0000a000 - 0x0000cfff (0x3000) IX[B]
(II) Bus 1 non-prefetchable memory range:
 [0] -1 0 0xe7000000 - 0xe7ffffff (0x1000000) MX[B]
(II) Bus 1 prefetchable memory range:
 [0] -1 0 0x50000000 - 0x500fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 2 non-prefetchable memory range:
 [0] -1 0 0xe4000000 - 0xe6ffffff (0x3000000) MX[B]
(II) Bus 2 prefetchable memory range:
 [0] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B]
(--) PCI:*(2:0:0) nVidia Corporation GeForce 6200 rev 161, Mem @ 0xe4000000/24, 0xd0000000/28, 0xe5000000/24
(II) Addressable bus resource ranges are
 [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[B]
 [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
 [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
 [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) PCI Memory resource overlap reduced 0xe0000000 from 0xe3ffffff to 0xdfffffff
(II) Active PCI resource ranges:
 [0] -1 0 0xe8085000 - 0xe808503f (0x40) MX[B]
 [1] -1 0 0xe8084000 - 0xe80847ff (0x800) MX[B]
 [2] -1 0 0xe8081000 - 0xe8081fff (0x1000) MX[B]
 [3] -1 0 0xe8000000 - 0xe807ffff (0x80000) MX[B]
 [4] -1 0 0xe8087000 - 0xe8087fff (0x1000) MX[B]
 [5] -1 0 0xe8086000 - 0xe80860ff (0x100) MX[B]
 [6] -1 0 0xe8083000 - 0xe8083fff (0x1000) MX[B]
 [7] -1 0 0xe8080000 - 0xe8080fff (0x1000) MX[B]
 [8] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
 [9] -1 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B](B)
 [12] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
 [13] -1 0 0x0000b000 - 0x0000b00f (0x10) IX[B]
 [14] -1 0 0x0000ac00 - 0x0000ac03 (0x4) IX[B]
 [15] -1 0 0x0000a800 - 0x0000a807 (0x8) IX[B]
 [16] -1 0 0x0000a400 - 0x0000a403 (0x4) IX[B]
 [17] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[B]
 [18] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [19] -1 0 0x0000d800 - 0x0000d87f (0x80) IX[B]
 [20] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
 [21] -1 0 0x0000d000 - 0x0000d007 (0x8) IX[B]
 [22] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
(II) Active PCI resource ranges after removing overlaps:
 [0] -1 0 0xe8085000 - 0xe808503f (0x40) MX[B]
 [1] -1 0 0xe8084000 - 0xe80847ff (0x800) MX[B]
 [2] -1 0 0xe8081000 - 0xe8081fff (0x1000) MX[B]
 [3] -1 0 0xe8000000 - 0xe807ffff (0x80000) MX[B]
 [4] -1 0 0xe8087000 - 0xe8087fff (0x1000) MX[B]
 [5] -1 0 0xe8086000 - 0xe80860ff (0x100) MX[B]
 [6] -1 0 0xe8083000 - 0xe8083fff (0x1000) MX[B]
 [7] -1 0 0xe8080000 - 0xe8080fff (0x1000) MX[B]
 [8] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
 [9] -1 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
 [10] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
 [11] -1 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B](B)
 [12] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
 [13] -1 0 0x0000b000 - 0x0000b00f (0x10) IX[B]
 [14] -1 0 0x0000ac00 - 0x0000ac03 (0x4) IX[B]
 [15] -1 0 0x0000a800 - 0x0000a807 (0x8) IX[B]
 [16] -1 0 0x0000a400 - 0x0000a403 (0x4) IX[B]
 [17] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[B]
 [18] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [19] -1 0 0x0000d800 - 0x0000d87f (0x80) IX[B]
 [20] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
 [21] -1 0 0x0000d000 - 0x0000d007 (0x8) IX[B]
 [22] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
 [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
 [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [5] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [6] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
 [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
 [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [5] -1 0 0xe8085000 - 0xe808503f (0x40) MX[B]
 [6] -1 0 0xe8084000 - 0xe80847ff (0x800) MX[B]
 [7] -1 0 0xe8081000 - 0xe8081fff (0x1000) MX[B]
 [8] -1 0 0xe8000000 - 0xe807ffff (0x80000) MX[B]
 [9] -1 0 0xe8087000 - 0xe8087fff (0x1000) MX[B]
 [10] -1 0 0xe8086000 - 0xe80860ff (0x100) MX[B]
 [11] -1 0 0xe8083000 - 0xe8083fff (0x1000) MX[B]
 [12] -1 0 0xe8080000 - 0xe8080fff (0x1000) MX[B]
 [13] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
 [14] -1 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
 [15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
 [16] -1 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B](B)
 [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [19] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
 [20] -1 0 0x0000b000 - 0x0000b00f (0x10) IX[B]
 [21] -1 0 0x0000ac00 - 0x0000ac03 (0x4) IX[B]
 [22] -1 0 0x0000a800 - 0x0000a807 (0x8) IX[B]
 [23] -1 0 0x0000a400 - 0x0000a403 (0x4) IX[B]
 [24] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[B]
 [25] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [26] -1 0 0x0000d800 - 0x0000d87f (0x80) IX[B]
 [27] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
 [28] -1 0 0x0000d000 - 0x0000d007 (0x8) IX[B]
 [29] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions/librecord.so
(II) Module record: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.13.0
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.1.0
 ABI class: X.Org Video Driver, version 0.8
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.2
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.4
(II) Loading font Type1
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
 compiled for 7.0.0, module version = 2.1.0
 Module class: X.Org Font Renderer
 ABI class: X.Org Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
 compiled for 4.0.2, module version = 1.0.8774
 Module class: X.Org Server Extension
 ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
 compiled for 4.0.2, module version = 1.0.8774
 Module class: X.Org Video Driver
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.4
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.5
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.1
 Module class: X.Org XInput Driver
 ABI class: X.Org XInput driver, version 0.5
(II) NVIDIA dlloader X Driver  1.0-8774  Tue Aug  1 20:55:35 PDT 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 02:00:0
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 1.0.0
 ABI class: X.Org ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
 compiled for 7.0.0, module version = 0.1.0
 ABI class: X.Org Video Driver, version 0.8
(II) resource ranges after xf86ClaimFixedResources() call:
 [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
 [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [5] -1 0 0xe8085000 - 0xe808503f (0x40) MX[B]
 [6] -1 0 0xe8084000 - 0xe80847ff (0x800) MX[B]
 [7] -1 0 0xe8081000 - 0xe8081fff (0x1000) MX[B]
 [8] -1 0 0xe8000000 - 0xe807ffff (0x80000) MX[B]
 [9] -1 0 0xe8087000 - 0xe8087fff (0x1000) MX[B]
 [10] -1 0 0xe8086000 - 0xe80860ff (0x100) MX[B]
 [11] -1 0 0xe8083000 - 0xe8083fff (0x1000) MX[B]
 [12] -1 0 0xe8080000 - 0xe8080fff (0x1000) MX[B]
 [13] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
 [14] -1 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
 [15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
 [16] -1 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B](B)
 [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [19] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
 [20] -1 0 0x0000b000 - 0x0000b00f (0x10) IX[B]
 [21] -1 0 0x0000ac00 - 0x0000ac03 (0x4) IX[B]
 [22] -1 0 0x0000a800 - 0x0000a807 (0x8) IX[B]
 [23] -1 0 0x0000a400 - 0x0000a403 (0x4) IX[B]
 [24] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[B]
 [25] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [26] -1 0 0x0000d800 - 0x0000d87f (0x80) IX[B]
 [27] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
 [28] -1 0 0x0000d000 - 0x0000d007 (0x8) IX[B]
 [29] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
(II) resource ranges after probing:
 [0] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
 [1] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [2] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [3] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [4] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [5] -1 0 0xe8085000 - 0xe808503f (0x40) MX[B]
 [6] -1 0 0xe8084000 - 0xe80847ff (0x800) MX[B]
 [7] -1 0 0xe8081000 - 0xe8081fff (0x1000) MX[B]
 [8] -1 0 0xe8000000 - 0xe807ffff (0x80000) MX[B]
 [9] -1 0 0xe8087000 - 0xe8087fff (0x1000) MX[B]
 [10] -1 0 0xe8086000 - 0xe80860ff (0x100) MX[B]
 [11] -1 0 0xe8083000 - 0xe8083fff (0x1000) MX[B]
 [12] -1 0 0xe8080000 - 0xe8080fff (0x1000) MX[B]
 [13] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
 [14] -1 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
 [15] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
 [16] -1 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B](B)
 [17] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B]
 [18] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B]
 [19] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B]
 [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [21] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [22] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
 [23] -1 0 0x0000b000 - 0x0000b00f (0x10) IX[B]
 [24] -1 0 0x0000ac00 - 0x0000ac03 (0x4) IX[B]
 [25] -1 0 0x0000a800 - 0x0000a807 (0x8) IX[B]
 [26] -1 0 0x0000a400 - 0x0000a403 (0x4) IX[B]
 [27] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[B]
 [28] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [29] -1 0 0x0000d800 - 0x0000d87f (0x80) IX[B]
 [30] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
 [31] -1 0 0x0000d000 - 0x0000d007 (0x8) IX[B]
 [32] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [33] 0 0 0xe60003b0 - 0xe60003bb (0xc) IS[B]
 [34] 0 0 0xe60003c0 - 0xe60003df (0x20) IS[B]
(II) Setting vga for screen 0.
(**) NVIDIA(0): Depth 24, (--) 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): Option "NoLogo" "true"
(**) NVIDIA(0): Option "ConnectedMonitor" "DFP-0,CRT-0"
(**) NVIDIA(0): Option "TwinView" "on"
(**) NVIDIA(0): Option "TwinViewOrientation" "RightOf"
(**) NVIDIA(0): Option "SecondMonitorHorizSync" "30.0-81.0"
(**) NVIDIA(0): Option "SecondMonitorVertRefresh" "56.0-75.0"
(**) NVIDIA(0): Option "MetaModes" "1680x1050,1280x1024"
(**) NVIDIA(0): Option "NoTwinViewXineramaInfo" "true"
(**) NVIDIA(0): Enabling RENDER acceleration
(**) NVIDIA(0): TwinView enabled
(**) NVIDIA(0): ConnectedMonitor string: "DFP-0,CRT-0"
(II) NVIDIA(0): NVIDIA GPU GeForce 6200 at PCI:2:0:0
(--) NVIDIA(0): VideoRAM: 131072 kBytes
(--) NVIDIA(0): VideoBIOS: 05.44.a2.02.00
(II) NVIDIA(0): Detected AGP rate: 8X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 6200 at PCI:2:0:0:
(--) NVIDIA(0):     Samsung SyncMaster (CRT-0)
(--) NVIDIA(0):     Samsung SyncMaster (DFP-0)
(--) NVIDIA(0): Samsung SyncMaster (CRT-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(0): Samsung SyncMaster (DFP-0): 155.0 MHz maximum pixel clock
(--) NVIDIA(0): Samsung SyncMaster (DFP-0): Internal Single Link TMDS
(II) NVIDIA(0): Assigned Display Devices: CRT-0, DFP-0
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):     "1680x1050,1280x1024"
(II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
(--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
 [0] 0 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B]
 [1] 0 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B]
 [2] 0 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B]
 [3] -1 0 0xffe00000 - 0xffffffff (0x200000) MX[B](B)
 [4] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
 [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B]
 [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B]
 [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B]
 [8] -1 0 0xe8085000 - 0xe808503f (0x40) MX[B]
 [9] -1 0 0xe8084000 - 0xe80847ff (0x800) MX[B]
 [10] -1 0 0xe8081000 - 0xe8081fff (0x1000) MX[B]
 [11] -1 0 0xe8000000 - 0xe807ffff (0x80000) MX[B]
 [12] -1 0 0xe8087000 - 0xe8087fff (0x1000) MX[B]
 [13] -1 0 0xe8086000 - 0xe80860ff (0x100) MX[B]
 [14] -1 0 0xe8083000 - 0xe8083fff (0x1000) MX[B]
 [15] -1 0 0xe8080000 - 0xe8080fff (0x1000) MX[B]
 [16] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[B]O
 [17] -1 0 0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
 [18] -1 0 0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
 [19] -1 0 0xe4000000 - 0xe4ffffff (0x1000000) MX[B](B)
 [20] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD)
 [21] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD)
 [22] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD)
 [23] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B]
 [24] -1 0 0x00000000 - 0x000000ff (0x100) IX[B]
 [25] -1 0 0x0000b400 - 0x0000b4ff (0x100) IX[B]
 [26] -1 0 0x0000b000 - 0x0000b00f (0x10) IX[B]
 [27] -1 0 0x0000ac00 - 0x0000ac03 (0x4) IX[B]
 [28] -1 0 0x0000a800 - 0x0000a807 (0x8) IX[B]
 [29] -1 0 0x0000a400 - 0x0000a403 (0x4) IX[B]
 [30] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[B]
 [31] -1 0 0x0000f000 - 0x0000f00f (0x10) IX[B]
 [32] -1 0 0x0000d800 - 0x0000d87f (0x80) IX[B]
 [33] -1 0 0x0000d400 - 0x0000d4ff (0x100) IX[B]
 [34] -1 0 0x0000d000 - 0x0000d007 (0x8) IX[B]
 [35] -1 0 0x0000e400 - 0x0000e41f (0x20) IX[B]
 [36] 0 0 0xe60003b0 - 0xe60003bb (0xc) IS[B]
 [37] 0 0 0xe60003c0 - 0xe60003df (0x20) IS[B]
(II) NVIDIA(0): Setting mode "1680x1050,1280x1024"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) Setting vga for screen 0.
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX
error opening security policy file /etc/X11/xserver/SecurityPolicy
(**) Option "Protocol" "IMPS/2"
(**) Mouse1: Device: "/dev/input/mice"
(**) Mouse1: Protocol: "IMPS/2"
(**) Option "CorePointer"
(**) Mouse1: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "true"
(**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 9
(**) Option "CoreKeyboard"
(**) Keyboard1: Core Keyboard
(**) Option "Protocol" "standard"
(**) Keyboard1: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Keyboard1: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Keyboard1: XkbModel: "pc105"
(**) Option "XkbLayout" "fr"
(**) Keyboard1: XkbLayout: "fr"
(**) Option "CustomKeycodes" "off"
(**) Keyboard1: CustomKeycodes disabled
(II) XINPUT: Adding extended input device "Keyboard1" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) Mouse1: ps2EnableDataReporting: succeeded
Could not init font path element /usr/share/fonts/X11/TTF/, removing from list!
Could not init font path element /usr/share/fonts/X11/OTF, removing from list!
Could not init font path element /usr/share/fonts/X11/CID/, removing from list!
 
------------------------------------------------------------------------------------
 
 
J'ai essayé de modifier l'option connectedmonitor en DFP-0,CRT-0 mais non toujours pas.
Merci en tout cas.

n°843509
depx
Posté le 15-09-2006 à 22:02:11  profilanswer
 

C'est peut être dans la syntaxe qui faille chercher ? :

 

Option "MetaModes" "CRT-0:1024x768 ,CRT-1:1024x768;"
Option "TwinViewOrientation" "CRT-0 RightOf CRT-1"
Option "ConnectedMonitor" "CRT-0,CRT-1"

 


(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 6200 at PCI:2:0:0:
(--) NVIDIA(0): Samsung SyncMaster (CRT-0)
(--) NVIDIA(0): Samsung SyncMaster (DFP-0)
(--) NVIDIA(0): Samsung SyncMaster (CRT-0): 400.0 MHz maximum pixel clock
(--) NVIDIA(0): Samsung SyncMaster (DFP-0): 155.0 MHz maximum pixel clock
(--) NVIDIA(0): Samsung SyncMaster (DFP-0): Internal Single Link TMDS


Message édité par depx le 15-09-2006 à 22:19:19
n°843513
asanque
Posté le 15-09-2006 à 22:21:07  profilanswer
 

Bong sang Depx, ça m'apprendra à pas bien lire. Merci à tous, ça marche avec ça :
 
Section "Device"
   Identifier     "Nvidia Geforce 6200"
   Driver         "nvidia"
   BusID        "2:0:0"
   Option      "TwinView" "on"
   Option      "NoTwinViewXineramaInfo"   "false"
   Option      "SecondMonitorHorizSync"   "30.0-81.0"
   Option      "SecondMonitorVertRefresh" "56.0-75.0"
   Option      "TwinViewOrientation"      "DFP-0 LeftOf CRT-0"
   Option      "MetaModes"                "DFP-0:1680x1050,CRT-0:1280x1024"
   Option      "ConnectedMonitor"         "DFP-0,CRT-0"
EndSection

n°843514
depx
Posté le 15-09-2006 à 22:22:24  profilanswer
 

yoopi  :D


Message édité par depx le 15-09-2006 à 22:22:40

Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Linux et OS Alternatifs
  Multimédia

  [RESOLU]Debian - Xorg - Nvidia - bi écran

 

Sujets relatifs
Pb avec Xorg et ma sortie TV sur ATI 9550THunderbird Debian / Windows XP
[RESOLU] phpmyadmin+mysql[Postfix] Recipient Address Rejected : Access Denied
Vlc sous debian testing[DEBIAN Sarge] Installer sur un RAQ 550 Sun Cobalt
install kubuntu : ecran bleuInstaller Firefox 2.0 b2 pour Ubuntu avec ses dictionnaires (résolu)
Debian Sarge 3.1 - changer la resolution sous GnomeDebian Sarge 3.1 Installation Files system not found
Plus de sujets relatifs à : [RESOLU]Debian - Xorg - Nvidia - bi écran


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR