Bonjour,

J'ai un problème pour l'affichage sur mon écran lorsque je fais un ctrl alt F1 2 ..
J'obtiens sur l'écran le message suivant :
Entrée analogique Impossible d'utiliser ce mode d'affichage.

Linux : ubuntu debian lenny/sid
kernel : 2.6.27-11-server
Ecran sur carte 1 (01:00:00) DELL 1905FP
Ecran sur carte 2 (02:00:00) Tele HD Orion.

A par ce problème tout fonctionne bien.

Merci beaucoup pour l'aide.

Carte ( lspci):
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
01:00.0 VGA compatible controller: ATI Technologies Inc R430 [Radeon X800 (PCIE)]
01:00.1 Display controller: ATI Technologies Inc R430 [Radeon X800] (PCIE) (Secondary)
02:00.0 VGA compatible controller: ATI Technologies Inc R430 [Radeon X800 (PCIE)]
02:00.1 Display controller: ATI Technologies Inc R430 [Radeon X800] (PCIE) (Secondary)
mon xorg.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
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
Section "ServerLayout"
        Identifier     "Default Layout"
        Screen         "Screen0" RightOf "Screen1"
        Screen         "Screen1" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
 
Section "Files"
 
EndSection
 
Section "ServerFlags"
        Option      "AIGLX" "on"
EndSection
 
Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "fr"
        Option      "XkbVariant" "latin9"
EndSection
 
Section "Monitor"
        Identifier   "monitorTV"
        VendorName   "Orion"
        ModelName    "TV-32083 D"
        DisplaySize  700        395
        HorizSync    14.0 - 46.0
        VertRefresh  47.0 - 61.0
        ModeLine     "1280x720@1" 74.5 1280 1464 1600 1664 720 721 724 746 -hsync +vsync
        ModeLine     "1280x720@2" 74.5 1280 1456 1592 1656 720 725 728 746 -hsync +vsync
        ModeLine     "1280x720@3" 74.5 1280 1464 1600 1664 720 737 740 746 -hsync +vsync
        ModeLine     "1280x720@4" 74.5 1280 1280 1600 1672 720 720 728 730 -hsync +vsync
        ModeLine     "1280x720@5" 74.5 1280 1464 1600 1664 720 721 724 746 -hsync +vsync
        ModeLine     "1280x720_1" 74.5 1280 1336 1472 1664 720 721 724 746 -hsync +vsync
        ModeLine     "1152x768" 65.0 1152 1178 1314 1472 768 771 777 806 +hsync +vsync
        ModeLine     "800x600_1" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
        ModeLine     "800x600_2" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
        ModeLine     "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
        ModeLine     "640x360" 37.2 640 668 736 832 360 360 362 373 -hsync +vsync doublescan
        ModeLine     "400x300" 20.0 400 420 484 528 300 300 302 314 +hsync +vsync doublescan
EndSection
Section "Device"
        Identifier  "Videocard0"
        Driver      "ati"
        BusID       "PCI:1:0:0"
EndSection
 
Section "Device"
        Identifier  "Videocard1"
        Driver      "ati"
        BusID       "PCI:2:0:0"
EndSection
 
Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection
 
Section "Screen"
        Identifier "Screen1"
        Device     "Videocard1"
        Monitor    "monitorTV"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Virtual   1280 720
                Depth     24
                Modes    "1280x720@5"
        EndSubSection
EndSection
 
Section "InputDevice"
        Identifier  "LIRC-Mouse"
        Driver      "mouse"
        Option      "Device" "/dev/lircm"
        Option      "Protocol" "IntelliMouse"
        Option      "SendCoreEvents"
        Option      "Buttons" "5"
        Option      "ZAxisMapping" "4 5"
EndSection
 
Section "Extensions"
        Option      "Composite" "Enable"
EndSection