IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Administration système Discussion :

Multi-seat config gdm & x.org


Sujet :

Administration système

  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    162
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2006
    Messages : 162
    Points : 445
    Points
    445
    Par défaut Multi-seat config gdm & x.org
    Bonjour,
    Voila j'ai acheté un nouvel ecran il n'y a pas longtemps et comme l'on est deux à utiliser l'ordi j'avais dans l'idée de faire du multi-poste (multi-seat)

    Alors quelques sources dont je me suis inspiré pour commencer l'aventure :
    http://wiki.debian.org/Multi_Seat_Debian_HOWTO
    http://blog.chris.tylers.info/index....11R6.97.0.html
    http://netpatia.blogspot.com/2006/09...th-ubuntu.html

    Bon je vais pas tout mettre mais ce sont les principaux.

    Le but étant de se passer des solutions tel que Xinerama ou autre ... normalement il est possible de la faire juste en configurant correctement gdm & X.org, petit précision je suis sous Debian Testing, mais comme c'est applicable a toute les distrib ...

    Maintenant les fichiers de conf :

    gdm.conf
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
     
     ................
    [servers]
     
    #Pour la configuration du "multi-seat"
    0=poste0
    1=poste1
     
    # Definition du premier X serveur.
    [server-poste0]
    name=poste0
    command=/usr/bin/X0 :0 -novtswitch -sharevts -layout poste0
    flexible=false
     
     
    # Definition du second X server.
    [server-poste1]
    name=poste1
    command=/usr/bin/X1 :1 -novtswitch -sharevts -layout poste1
    flexible=false
    Vous remarquerez que dans la ligne "command" j'ai X0 et X1, c'est normal j'ai fait deux liens

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    ln -sf /usr/X11R6/bin/X /usr/X11R6/bin/X0
    ln -sf /usr/X11R6/bin/X /usr/X11R6/bin/X1
    et xorg.xonf
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
     
    #############
    # Serveur X #
    #############
    Section "ServerLayout"
        Identifier     "poste0"
        Screen      0  "ecran0" 0 0
        InputDevice    "sourie0" "CorePointer"
        InputDevice    "clavier0" "CoreKeyboard"
    EndSection
     
    Section "ServerLayout"
        Identifier    "poste1"
        Screen      0 "ecran1" 0 0
        InputDevice   "sourie1" "CorePointer"
        InputDevice   "clavier1" "CoreKeyboard"
    EndSection
     
    Section "Files"
        RgbPath         "/usr/X11R6/lib/X11/rgb"
    EndSection
     
    Section "Module"
        Load           "bitmap"
        Load           "ddc"
        Load           "extmod"
        Load           "freetype"
        Load           "glx"
        Load           "int10"
    #    Load           "v4l"
        Load           "vbe"
        Load           "dbe"
    #    Load           "type1"
    EndSection
     
    Section "ServerFlags"
        Option         "Xinerama" "0"
    EndSection
    ####################################
    # Périphérique d'entrée du poste 0 #
    ####################################
    #Clavier du poste 0
    Section "InputDevice"
            Identifier     "clavier0"
            Driver         "evdev"
            Option         "Device"           "/dev/input/event0"
            Option         "XkbLayout"      "fr"
    	Option         "XkbVariant" "latin9"
    EndSection
     
    #Sourie du poste 0
    Section "InputDevice"
        Identifier "sourie0"
        Driver "evdev"
        Option "ZAxisMapping" "4 5"
        Option "Device" "/dev/input/event7"
    EndSection
     
    ####################################
    # Périphérique d'entrée du poste 1 #
    ####################################
    #Clavier du poste 1
    Section "InputDevice"
    	Identifier     "clavier1"
    	Driver         "evdev"
            Option         "Device"           "/dev/input/event1"
            Option         "XkbLayout"      "fr"
    	Option         "XkbVariant" "latin9"
    EndSection
     
    #Sourie du poste 1
    Section "InputDevice"
        Identifier "sourie1"
        Driver "evdev"
        Option "ZAxisMapping" "4 5"
        Option "Device" "/dev/input/event3"
    EndSection
     
    #######################################
    # Carte graphique et écran du poste 0 #
    #######################################
     
    Section "Device"
        Identifier     "carteVideo0"
        Driver         "nvidia"
        VendorName     "NVIDIA Corporation"
        BoardName      "GeForce 7600 GT"
        BusID          "PCI:3:0:0"
        Screen          0
    EndSection
     
     
    Section "Monitor"
        Identifier     "CRT"
        VendorName     "Philips"
        ModelName      "PHILIPS 107B3"
        HorizSync       30.0 - 86.0
        VertRefresh     50.0 - 160.0
        Option       "DPMS"
    EndSection
     
    Section "Screen"
        Identifier     "ecran0"
        Device         "carteVideo0"
        Monitor        "CRT"
        DefaultDepth    24
    #    Option         "TwinView" "0"
        Option         "metamodes" "CRT: 1024x768 +0+0"
        SubSection     "Display"
            Depth       24
        EndSubSection
    EndSection
     
     
    #######################################
    # Carte graphique et écran du poste 1 #
    #######################################
     
    Section "Device"
        Identifier     "carteVideo1"
        Driver         "nvidia"
        VendorName     "NVIDIA Corporation"
        BoardName      "GeForce 7600 GT"
        BusID          "PCI:3:0:0"
        Screen          1
    EndSection
     
    Section "Monitor"
        Identifier     "LCD"
        VendorName     "Hanns.G"
        ModelName      "HSD Hanns.G HG281"
        HorizSync       24.0 - 80.0
        VertRefresh     56.0 - 75.0
    EndSection
     
    Section "Screen"
        Identifier     "ecran1"
        Device         "carteVideo1"
        Monitor        "LCD"
        DefaultDepth    24
    #    Option         "TwinView" "0"
        Option         "metamodes" "DFP: 1920x1200 +0+0"
        SubSection     "Display"
            Depth       24
    	Modes      "1920x1200"
        EndSubSection
    EndSection
    Alors j'arrive a bien avoir sur le CRT le gdm avec le clavier et la sourie qui vont bien, mais le deuxième gdm qui devrait apparaitre sur l'autre écran plante lamentablement

    Je suis sur que je ne suis pa sloin de la solution mais ...

    Donc si certain on des proposition/idée

    pour info voila les logs d'erreur que me sort X, je vous met la trace complète car je n'ai pas trouvé d'erreur flagrande

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
     
    X.Org X Server 1.4.2
    Release Date: 11 June 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux Debian (xorg-server 2:1.4.2-5)
    Current Operating System: Linux Venables 2.6.26-1-686 #1 SMP Thu Aug 28 12:00:54 UTC 2008 i686
    Build Date: 26 August 2008  07:32:05PM
     
    	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.1.log", Time: Sat Sep 20 00:36:22 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (++) ServerLayout "poste1"
    (**) |-->Screen "ecran1" (0)
    (**) |   |-->Monitor "LCD"
    (**) |   |-->Device "carteVideo1"
    (**) |-->Input Device "sourie1"
    (**) |-->Input Device "clavier1"
    (**) Option "Xinerama" "0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
    	Entry deleted from font path.
    (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
    	Entry deleted from font path.
    (==) FontPath set to:
    	/usr/share/fonts/X11/misc,
    	/usr/share/fonts/X11/100dpi/:unscaled,
    	/usr/share/fonts/X11/75dpi/:unscaled,
    	/usr/share/fonts/X11/Type1,
    	/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"
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x81e3c00
    (II) Module ABI versions:
    	X.Org ANSI C Emulation: 0.3
    	X.Org Video Driver: 2.0
    	X.Org XInput driver : 2.0
    	X.Org Server Extension : 0.3
    	X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules//libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.0.0
    	ABI class: X.Org Video Driver, version 2.0
    (++) using VT number 8
     
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 10de,01e0 card 1043,80ac rev c1 class 06,00,00 hdr 80
    (II) PCI: 00:00:1: chip 10de,01eb card 1043,80ac rev c1 class 05,00,00 hdr 80
    (II) PCI: 00:00:2: chip 10de,01ee card 1043,80ac rev c1 class 05,00,00 hdr 80
    (II) PCI: 00:00:3: chip 10de,01ed card 1043,80ac rev c1 class 05,00,00 hdr 80
    (II) PCI: 00:00:4: chip 10de,01ec card 1043,80ac rev c1 class 05,00,00 hdr 80
    (II) PCI: 00:00:5: chip 10de,01ef card 1043,80ac rev c1 class 05,00,00 hdr 80
    (II) PCI: 00:01:0: chip 10de,0060 card 1043,80ad rev a4 class 06,01,00 hdr 80
    (II) PCI: 00:01:1: chip 10de,0064 card 1043,0c11 rev a2 class 0c,05,00 hdr 80
    (II) PCI: 00:02:0: chip 10de,0067 card 1043,0c11 rev a4 class 0c,03,10 hdr 80
    (II) PCI: 00:02:1: chip 10de,0067 card 1043,0c11 rev a4 class 0c,03,10 hdr 80
    (II) PCI: 00:02:2: chip 10de,0068 card 1043,0c11 rev a4 class 0c,03,20 hdr 80
    (II) PCI: 00:04:0: chip 10de,0066 card 1043,80a7 rev a1 class 02,00,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 1043,0c11 rev a2 class 01,01,8a hdr 00
    (II) PCI: 00:0d:0: chip 10de,006e card 1043,809a rev a3 class 0c,00,10 hdr 00
    (II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev c1 class 06,04,00 hdr 01
    (II) PCI: 01:04:0: chip 11ab,4320 card 1043,811a rev 13 class 02,00,00 hdr 00
    (II) PCI: 01:08:0: chip 1102,0002 card 1102,8064 rev 0a class 04,01,00 hdr 80
    (II) PCI: 01:08:1: chip 1102,7002 card 1102,0020 rev 0a class 09,80,00 hdr 80
    (II) PCI: 01:0b:0: chip 1095,3112 card 1095,6112 rev 02 class 01,04,00 hdr 00
    (II) PCI: 03:00:0: chip 10de,02e0 card 107d,20a3 rev a2 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,3), 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: 0x0002 (VGA_EN is cleared)
    (II) Bus 1 I/O range:
    	[0] -1	0	0x00009000 - 0x0000afff (0x2000) IX[B]
    (II) Bus 1 non-prefetchable memory range:
    	[0] -1	0	0xe8000000 - 0xe9ffffff (0x2000000) MX[B]
    (II) Bus 1 prefetchable memory range:
    	[0] -1	0	0x88000000 - 0x880fffff (0x100000) MX[B]
    (II) PCI-to-PCI bridge:
    (II) Bus 3: bridge is at (0:30:0), (0,3,3), BCTRL: 0x000a (VGA_EN is set)
    (II) Bus 3 non-prefetchable memory range:
    	[0] -1	0	0xe5000000 - 0xe7ffffff (0x3000000) MX[B]
    (II) Bus 3 prefetchable memory range:
    	[0] -1	0	0xd0000000 - 0xdfffffff (0x10000000) MX[B]
    (--) PCI:*(3:0:0) nVidia Corporation GeForce 7600 GT rev 162, Mem @ 0xe5000000/24, 0xd0000000/28, 0xe6000000/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	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
    	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
    	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
    	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
    	[5] -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	0xe9004000 - 0xe90041ff (0x200) MX[B]
    	[1] -1	0	0xe9000000 - 0xe9003fff (0x4000) MX[B]
    	[2] -1	0	0xea004000 - 0xea00403f (0x40) MX[B]
    	[3] -1	0	0xea003000 - 0xea0037ff (0x800) MX[B]
    	[4] -1	0	0xea006000 - 0xea006fff (0x1000) MX[B]
    	[5] -1	0	0xea005000 - 0xea0050ff (0x100) MX[B]
    	[6] -1	0	0xea002000 - 0xea002fff (0x1000) MX[B]
    	[7] -1	0	0xea001000 - 0xea001fff (0x1000) MX[B]
    	[8] -1	0	0xe0000000 - 0xdfffffff (0x0) MX[B]O
    	[9] -1	0	0xe6000000 - 0xe6ffffff (0x1000000) MX[B](B)
    	[10] -1	0	0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
    	[11] -1	0	0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
    	[12] -1	0	0x0000ac00 - 0x0000ac0f (0x10) IX[B]
    	[13] -1	0	0x0000a800 - 0x0000a803 (0x4) IX[B]
    	[14] -1	0	0x0000a400 - 0x0000a407 (0x8) IX[B]
    	[15] -1	0	0x0000a000 - 0x0000a003 (0x4) IX[B]
    	[16] -1	0	0x00009c00 - 0x00009c07 (0x8) IX[B]
    	[17] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
    	[18] -1	0	0x00009400 - 0x0000941f (0x20) IX[B]
    	[19] -1	0	0x00009000 - 0x000090ff (0x100) IX[B]
    	[20] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
    	[21] -1	0	0x0000cc00 - 0x0000cc07 (0x8) IX[B]
    	[22] -1	0	0x0000c800 - 0x0000c81f (0x20) IX[B]
    (II) Active PCI resource ranges after removing overlaps:
    	[0] -1	0	0xe9004000 - 0xe90041ff (0x200) MX[B]
    	[1] -1	0	0xe9000000 - 0xe9003fff (0x4000) MX[B]
    	[2] -1	0	0xea004000 - 0xea00403f (0x40) MX[B]
    	[3] -1	0	0xea003000 - 0xea0037ff (0x800) MX[B]
    	[4] -1	0	0xea006000 - 0xea006fff (0x1000) MX[B]
    	[5] -1	0	0xea005000 - 0xea0050ff (0x100) MX[B]
    	[6] -1	0	0xea002000 - 0xea002fff (0x1000) MX[B]
    	[7] -1	0	0xea001000 - 0xea001fff (0x1000) MX[B]
    	[8] -1	0	0xe0000000 - 0xdfffffff (0x0) MX[B]O
    	[9] -1	0	0xe6000000 - 0xe6ffffff (0x1000000) MX[B](B)
    	[10] -1	0	0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
    	[11] -1	0	0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
    	[12] -1	0	0x0000ac00 - 0x0000ac0f (0x10) IX[B]
    	[13] -1	0	0x0000a800 - 0x0000a803 (0x4) IX[B]
    	[14] -1	0	0x0000a400 - 0x0000a407 (0x8) IX[B]
    	[15] -1	0	0x0000a000 - 0x0000a003 (0x4) IX[B]
    	[16] -1	0	0x00009c00 - 0x00009c07 (0x8) IX[B]
    	[17] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
    	[18] -1	0	0x00009400 - 0x0000941f (0x20) IX[B]
    	[19] -1	0	0x00009000 - 0x000090ff (0x100) IX[B]
    	[20] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
    	[21] -1	0	0x0000cc00 - 0x0000cc07 (0x8) IX[B]
    	[22] -1	0	0x0000c800 - 0x0000c81f (0x20) IX[B]
    (II) OS-reported resource ranges after removing overlaps with PCI:
    	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
    	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
    	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
    	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
    	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
    (II) All system resource ranges:
    	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
    	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
    	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
    	[4] -1	0	0xe9004000 - 0xe90041ff (0x200) MX[B]
    	[5] -1	0	0xe9000000 - 0xe9003fff (0x4000) MX[B]
    	[6] -1	0	0xea004000 - 0xea00403f (0x40) MX[B]
    	[7] -1	0	0xea003000 - 0xea0037ff (0x800) MX[B]
    	[8] -1	0	0xea006000 - 0xea006fff (0x1000) MX[B]
    	[9] -1	0	0xea005000 - 0xea0050ff (0x100) MX[B]
    	[10] -1	0	0xea002000 - 0xea002fff (0x1000) MX[B]
    	[11] -1	0	0xea001000 - 0xea001fff (0x1000) MX[B]
    	[12] -1	0	0xe0000000 - 0xdfffffff (0x0) MX[B]O
    	[13] -1	0	0xe6000000 - 0xe6ffffff (0x1000000) MX[B](B)
    	[14] -1	0	0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
    	[15] -1	0	0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
    	[16] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
    	[17] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
    	[18] -1	0	0x0000ac00 - 0x0000ac0f (0x10) IX[B]
    	[19] -1	0	0x0000a800 - 0x0000a803 (0x4) IX[B]
    	[20] -1	0	0x0000a400 - 0x0000a407 (0x8) IX[B]
    	[21] -1	0	0x0000a000 - 0x0000a003 (0x4) IX[B]
    	[22] -1	0	0x00009c00 - 0x00009c07 (0x8) IX[B]
    	[23] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
    	[24] -1	0	0x00009400 - 0x0000941f (0x20) IX[B]
    	[25] -1	0	0x00009000 - 0x000090ff (0x100) IX[B]
    	[26] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
    	[27] -1	0	0x0000cc00 - 0x0000cc07 (0x8) IX[B]
    	[28] -1	0	0x0000c800 - 0x0000c81f (0x20) IX[B]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) LoadModule: "ddc"(II) Module "ddc" already built-in
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.0.0
    	Module class: X.Org Server Extension
    	ABI class: X.Org Server Extension, version 0.3
    (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: "freetype"
    (II) Loading /usr/lib/xorg/modules//fonts/libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    	compiled for 1.4.2, module version = 2.1.0
    	Module class: X.Org Font Renderer
    	ABI class: X.Org Font Renderer, version 0.5
    (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.0
    	Module class: X.Org Server Extension
    (II) NVIDIA GLX Module  173.14.12  Thu Jul 17 18:36:35 PDT 2008
    (II) Loading extension GLX
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.0.0
    	ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "vbe"
    (II) Loading /usr/lib/xorg/modules//libvbe.so
    (II) Module vbe: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.1.0
    	ABI class: X.Org Video Driver, version 2.0
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.0.0
    	Module class: X.Org Server Extension
    	ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.13.0
    	Module class: X.Org Server Extension
    	ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.0.0
    	ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (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.0
    	Module class: X.Org Video Driver
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 2.0.3
    	Module class: X.Org XInput Driver
    	ABI class: X.Org XInput driver, version 2.0
    (II) NVIDIA dlloader X Driver  173.14.12  Thu Jul 17 18:15:54 PDT 2008
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 03:00:0
    (WW) NVIDIA: No matching Device section for instance (BusID PCI:3:0:0) found
    (--) 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 1.4.2, module version = 1.0.0
    	ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    	compiled for 1.4.2, module version = 1.0.0
    	ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"(II) Module "ramdac" already built-in
    (II) resource ranges after xf86ClaimFixedResources() call:
    	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
    	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
    	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
    	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
    	[4] -1	0	0xe9004000 - 0xe90041ff (0x200) MX[B]
    	[5] -1	0	0xe9000000 - 0xe9003fff (0x4000) MX[B]
    	[6] -1	0	0xea004000 - 0xea00403f (0x40) MX[B]
    	[7] -1	0	0xea003000 - 0xea0037ff (0x800) MX[B]
    	[8] -1	0	0xea006000 - 0xea006fff (0x1000) MX[B]
    	[9] -1	0	0xea005000 - 0xea0050ff (0x100) MX[B]
    	[10] -1	0	0xea002000 - 0xea002fff (0x1000) MX[B]
    	[11] -1	0	0xea001000 - 0xea001fff (0x1000) MX[B]
    	[12] -1	0	0xe0000000 - 0xdfffffff (0x0) MX[B]O
    	[13] -1	0	0xe6000000 - 0xe6ffffff (0x1000000) MX[B](B)
    	[14] -1	0	0xd0000000 - 0xdfffffff (0x10000000) MX[B](B)
    	[15] -1	0	0xe5000000 - 0xe5ffffff (0x1000000) MX[B](B)
    	[16] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
    	[17] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
    	[18] -1	0	0x0000ac00 - 0x0000ac0f (0x10) IX[B]
    	[19] -1	0	0x0000a800 - 0x0000a803 (0x4) IX[B]
    	[20] -1	0	0x0000a400 - 0x0000a407 (0x8) IX[B]
    	[21] -1	0	0x0000a000 - 0x0000a003 (0x4) IX[B]
    	[22] -1	0	0x00009c00 - 0x00009c07 (0x8) IX[B]
    	[23] -1	0	0x00009800 - 0x00009807 (0x8) IX[B]
    	[24] -1	0	0x00009400 - 0x0000941f (0x20) IX[B]
    	[25] -1	0	0x00009000 - 0x000090ff (0x100) IX[B]
    	[26] -1	0	0x0000f000 - 0x0000f00f (0x10) IX[B]
    	[27] -1	0	0x0000cc00 - 0x0000cc07 (0x8) IX[B]
    	[28] -1	0	0x0000c800 - 0x0000c81f (0x20) IX[B]
    (EE) Screen 0 deleted because of no matching config section.
     
    Backtrace:
    0: /usr/bin/X1(xf86SigHandler+0x7e) [0x80c924e]
    1: [0xb7eed400]
     
    Fatal server error:
    Caught signal 11.  Server aborting
    Le signal 11 serais qu'il essaye d'acceder a une zone mémoire ou il devrait pas
    Je suis presque sur qu'il ne sait pas qu'il doit l'afficher sur le second écran et qu'il essaye le premier mais comme il y a déjà un serveur X de lancé il se fait jeter.

    Enfin peut être

    On va dire que j'ai bien compris le fonctionnement de bout en bout mais que le seul point dont je ne suis pas sur est de lui indiquer sur quel écran les serveur doivent s'afficher.

    Voila merci d'avance

  2. #2
    Membre averti
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    162
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2006
    Messages : 162
    Points : 445
    Points
    445
    Par défaut
    Pour ceux que ça interresse voila mes fichiers fonctionnel .... avec une deuxième CG

    http://forum.debian-fr.org/viewtopic...t=6954#p188187

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Choix du réseau dans une config multi-adresses
    Par Alain B. dans le forum Windows XP
    Réponses: 4
    Dernier message: 23/06/2008, 08h31
  2. Config multi-tâche récente
    Par ullgom dans le forum Ordinateurs
    Réponses: 6
    Dernier message: 26/09/2007, 21h32
  3. Réponses: 1
    Dernier message: 11/06/2007, 17h19
  4. Réponses: 2
    Dernier message: 15/01/2007, 14h42

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo