Page 1 sur 2
[résolution]la résolution est mal détectée(résolu)
Publié : lun. 25 juil. 2011, 17:53
par ourobolos
Bonjour
J'ai changé de carte graphique suite à une panne, j'ai installé les pilotes catalyst pour la nouvelle carte (radeon HD5570).
Code : Tout sélectionner
yaourt -Qb | grep catalyst
local/catalyst 11.6-1
local/catalyst-utils 11.6-1
Sauf que maintenant j'ai une résolution de 1400x1050 au lieu de 1680x1050, j'arrive à la modifier avec xrandr
Code : Tout sélectionner
$xrandr --output DFP2 --mode 1680x1050
$xrandr
Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 1680 x 1680
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
1680x1050 59.9*+
1400x1050 59.9
1600x900 59.9
1360x1024 59.9
1280x1024 75.0 60.0
1440x900 59.9
1280x960 60.0
1280x800 60.0
1152x864 59.9 75.0
1280x768 60.0
1280x720 60.0
1024x768 75.0 70.1 60.0
800x600 72.2 75.0 60.3 56.2
640x480 75.0 72.8 66.8 59.9
mais dans ce cas mon fond d'écran ne suis pas (avec feh --bg-scale), même si je renouvelle la commande l'image est en partie répétée sur le côté de l'écran.
une idée pour résoudre ce soucis ?
pour inscrire "en dur" ma résolution à chaque session, il faut modifier le xorg.conf ?
merci d'avance
Re: [résolution]la résolution est mal détectée(en cours)
Publié : lun. 25 juil. 2011, 20:40
par FoolEcho
ourobolos a écrit :pour inscrire "en dur" ma résolution à chaque session, il faut modifier le xorg.conf ?
Faut éviter d'avoir un xorg.conf (déprécié et pour laisser faire la détection automatique), mais oui, il faut peut-être rajouter la configuration dans un monitor et/ou un screen.conf.
Re: [résolution]la résolution est mal détectée(en cours)
Publié : lun. 25 juil. 2011, 23:31
par widapit
Salut !
ourobolos a écrit :pour inscrire "en dur" ma résolution à chaque session, il faut modifier le xorg.conf ?
...pour ma part j'ai eu le même soucis avec la tour du salon qui a pour écran, la télé ! mais avec xfce en allant dans le menu 'affichage' tout simplement ! effectivement, avant d'installer cet environnement-là, je passais par le 'xorg.conf' et ca marchait bien aussi...
Re: [résolution]la résolution est mal détectée(en cours)
Publié : mar. 26 juil. 2011, 07:37
par ourobolos
@FoolEcho
mon xorg.conf est le résultat de cette commande indiquée dans le wiki :
Code : Tout sélectionner
$cat /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
Section "Module"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:2:0:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "DRI"
Mode 0666
EndSection
je dois déplacer ça dans un fichier screen.conf ?
@widapit
je suis sous openbox, j'ai pas d'utilitaire graphique pour mes réglages d'écran, je vais chercher le bon fichier de configuration.
une idée rapport au fond d'écran qui se duplique au lieu de s'étendre ?
Re: [résolution]la résolution est mal détectée(en cours)
Publié : mar. 26 juil. 2011, 09:40
par FoolEcho
ourobolos a écrit :je dois déplacer ça dans un fichier screen.conf ?
En fait tu devrais déplacer chaque section dans un fichier distinct de /etc/X11/xorg.conf.d/ avec un numéro d'abord (ça peut paraître plus confus, mais non, car tous les fichiers ne sont pas forcément indispensables car X configure beaucoup de choses par lui-même), par exemple (de mémoire, ça devrait être grosso modo la norme):
ServerLayout >
05-server.conf
Monitor > 10-monitor.conf
Device > 20-device.conf
Screen > 25-screen.conf
DRI > 30-other.conf
(bien sûr, garde une copie de ton xorg.conf initial, au cas où)
Sinon, n'ayant pas de carte ati, je ne sais pas comment X se débrouille avec, mais tu peux aussi tenter de mettre seulement le device.conf (voire même pas du tout si X le détecte, il faut vérifier dans le log si le module ati est bien chargé -- perso, je préfère le mettre, j'aime pas voir X chercher des trucs pour rien

) et de rajouter seulement les fichiers que tu as à modifier (si ça se trouve, tu n'auras même pas besoin des autres, mais pour ça, je ne sais pas... d'après le wiki, il faut le Depth dans Screen et DRI sous peine de tomber sur l'écran noir... il faut voir ce que X est capable de configurer tout seul...).
Une fois nettoyée la configuration de X, tu pourras modifier screen et/ou monitor pour obtenir la bonne résolution.
EDIT:
05-server.conf probablement...
Re: [résolution]la résolution est mal détectée(en cours)
Publié : ven. 29 juil. 2011, 07:27
par ourobolos
J'ai éclaté mon xorg.conf en plusieurs fichiers :
Code : Tout sélectionner
$cat /etc/X11/5-server.conf
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
$cat /etc/X11/10-monitor.conf
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
$cat /etc/X11/20-device.conf
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:2:0:0"
EndSection
$cat /etc/X11/25-screen.conf
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
$cat /etc/X11/30-other.conf
Section "DRI"
Mode 0666
EndSection
par contre j'ai l'impression qu'il ne détecte plus du tout la résolution maximale de l'écran :
Code : Tout sélectionner
$xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 400, current 1280 x 1024, maximum 1280 x 1024
default connected 1280x1024+0+0 0mm x 0mm
1280x1024 0.0*
1280x960 0.0
1152x864 0.0
1024x768 0.0
800x600 0.0
640x480 0.0
720x400 0.0
Re: [résolution]la résolution est mal détectée(en cours)
Publié : ven. 29 juil. 2011, 09:36
par FoolEcho
Tu devrais essayer avec le device.conf seul (voire même rien du tout pour commencer)... il faudrait le log de X aussi, voir ce qu'il se passe (de préfèrence avec xorg.conf et avec fichiers modulaires).
Mais on s'écarte du sujet (c'est juste que j'essaie de chopper des gens qui sont sur ati, parce que j'aimerais bien dépoussièrer un peu le wiki sur cette partie de configuration de X, si possible), pour configurer ta résolution, ça passe par modeline (section monitor et screen), cf. wiki:
https://wiki.archlinux.org/index.php/Xr ... esolutions (+ paragraphe qui suit pour X).
Tu peux déjà tester avec ton xorg.conf complet, tu feras les essais avec les différents fichiers de conf, après si tu veux...
EDIT: en fait, petite boulette de ma part: ça devrait être
05-server.conf (mais normalement, y en a même pas besoin de celui-là).
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 16:24
par ourobolos
alors les tests :
sans xorg.conf :
Code : Tout sélectionner
$ls /etc/X11/
xinit xorg.conf.bak xorg.conf.d xorg.conf.original-0
Code : Tout sélectionner
$tail /var/log/Xorg.0.log
[ 120.530] (--) Logitech Logitech USB Headset: Found keys
[ 120.530] (II) Logitech Logitech USB Headset: Configuring as keyboard
[ 120.530] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/usb4/4-5/4-5:1.3/input/input3/event3"
[ 120.530] (II) XINPUT: Adding extended input device "Logitech Logitech USB Headset" (type: KEYBOARD)
[ 120.530] (**) Option "xkb_rules" "evdev"
[ 120.530] (**) Option "xkb_model" "evdev"
[ 120.530] (**) Option "xkb_layout" "fr"
[ 120.530] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 120.536] (II) config/udev: Adding input device PC Speaker (/dev/input/event0)
[ 120.536] (II) No input driver/identifier specified (ignoring)
Code : Tout sélectionner
$xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 400, current 1280 x 1024, maximum 1280 x 1024
default connected 1280x1024+0+0 0mm x 0mm
1280x1024 0.0*
1280x960 0.0
1152x864 0.0
1024x768 0.0
800x600 0.0
640x480 0.0
720x400 0.0
avec un 20-device.conf :
Code : Tout sélectionner
$cat /etc/X11/20-device.conf
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:2:0:0"
EndSection
Code : Tout sélectionner
$tail /var/log/Xorg.0.log
[ 587.803] (--) Logitech Logitech USB Headset: Found keys
[ 587.803] (II) Logitech Logitech USB Headset: Configuring as keyboard
[ 587.803] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/usb4/4-5/4-5:1.3/input/input3/event3"
[ 587.803] (II) XINPUT: Adding extended input device "Logitech Logitech USB Headset" (type: KEYBOARD)
[ 587.803] (**) Option "xkb_rules" "evdev"
[ 587.803] (**) Option "xkb_model" "evdev"
[ 587.803] (**) Option "xkb_layout" "fr"
[ 587.803] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 587.810] (II) config/udev: Adding input device PC Speaker (/dev/input/event0)
[ 587.810] (II) No input driver/identifier specified (ignoring)
Code : Tout sélectionner
$xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 400, current 1280 x 1024, maximum 1280 x 1024
default connected 1280x1024+0+0 0mm x 0mm
1280x1024 0.0*
1280x960 0.0
1152x864 0.0
1024x768 0.0
800x600 0.0
640x480 0.0
720x400 0.0
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 16:34
par FoolEcho
Marrant cette sortie de xrandr...
Mais pour tenter de comprendre, ce serait nettement mieux d'avoir les logs de X en entier que juste par «tail»...

Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 16:38
par ourobolos
edit :
Xorg.0.log.old
http://pastebin.com/jphqDfc7
Xorg.0.log
http://pastebin.com/pxczD47Y
et voici
j'ai essayé d'ajouter une nouvelle résolution par xrandr, sans succès pour le moment
Code : Tout sélectionner
$cvt 1680 1050
# 1680x1050 59.95 Hz (CVT 1.76MA) hsync: 65.29 kHz; pclk: 146.25 MHz
Modeline "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync
$xrandr --newmode "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync
xrandr: Failed to get size of gamma for output default
merci de ton aide

Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 16:57
par FoolEcho
Dans le premier cas, sans rien... il te charge le module générique vesa... bon «normal» (je pense que X ne détecte automatiquement que le pilote ati libre, ce qui est bon à savoir

)...
Dans le second cas, avec le 20-device.conf... ... pareil ?!

.... heu, c'est pas possible... tu ne te serais pas trompé dans tes posts ? ... ...
Ah non, attends voir, les fichiers de conf doivent aller dans /etc/X11/
xorg.conf.d/ (pas juste dans /etc/X11/)... (une chance qui tu aies montré le cat

)
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 17:05
par ourobolos
effectivement, en déplaçant le fichier dans xorg.conf.d il y a amélioration :
Code : Tout sélectionner
$xrandr
Screen 0: minimum 320 x 200, current 1400 x 1050, maximum 1680 x 1680
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1400x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
1680x1050 59.9 +
1400x1050 59.9*
1600x900 59.9
1360x1024 59.9
1280x1024 75.0 60.0
1440x900 59.9
1280x960 60.0
1280x800 60.0
1152x864 59.9 75.0
1280x768 60.0
1280x720 60.0
1024x768 75.0 70.1 60.0
800x600 72.2 75.0 60.3 56.2
640x480 75.0 72.8 66.8 59.9
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 connected 1400x1050+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1600x1200 60.0 +
1400x1050 60.0*
1600x900 60.0
1360x1024 60.0
1280x1024 60.0
1440x900 59.9
1280x960 60.0
1366x768 59.8
1360x768 60.0
1280x800 59.8
1152x864 60.0
1280x768 59.9
1280x720 60.0
1024x768 60.0
800x600 60.3
720x480 60.0
640x480 59.9
il détecte bien la résolution 1680x1050 même s'il ne la choisit pas.
le log xorg :
http://pastebin.com/4fCV4Kcq
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 17:20
par FoolEcho
Essaie maintenant en rajoutant un 10-monitor.conf pour prévaloir ce mode:
Code : Tout sélectionner
Section "Monitor"
Identifier "Monitor0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
Modeline "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync
Option "PreferredMode" "1680x1050_60.00"
EndSection
Ceci dit, ton précédent log indiquait:
Code : Tout sélectionner
[ 1842.304] (II) fglrx(0): Not using mode "1680x1050" (monitor doesn't support reduced blanking)
[ 1842.304] (II) fglrx(0): Not using mode "1680x1050" (unknown reason)
... donc pas sûr que ça marche...

Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 17:26
par ourobolos
effectivement, même avec le monitor.xonf que tu as indiqué j'ai la même chose :
Code : Tout sélectionner
$xrandr
Screen 0: minimum 320 x 200, current 1400 x 1050, maximum 1680 x 1680
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1400x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
1680x1050 59.9 +
1400x1050 59.9*
1600x900 59.9
1360x1024 59.9
1280x1024 75.0 60.0
1440x900 59.9
1280x960 60.0
1280x800 60.0
1152x864 59.9 75.0
1280x768 60.0
1280x720 60.0
1024x768 75.0 70.1 60.0
800x600 72.2 75.0 60.3 56.2
640x480 75.0 72.8 66.8 59.9
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 connected 1400x1050+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1600x1200 60.0 +
1400x1050 60.0*
1600x900 60.0
1360x1024 60.0
1280x1024 60.0
1440x900 59.9
1280x960 60.0
1366x768 59.8
1360x768 60.0
1280x800 59.8
1152x864 60.0
1280x768 59.9
1280x720 60.0
1024x768 60.0
800x600 60.3
720x480 60.0
640x480 59.9
le log
http://pastebin.com/3BFTTE79
sachant «qu'à la main»
ça fonctionne
log xorg supplémentaire après :
Code : Tout sélectionner
[ 3313.929] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 3313.929] (II) fglrx(0): Using hsync ranges from config file
[ 3313.929] (II) fglrx(0): Using vrefresh ranges from config file
[ 3313.929] (II) fglrx(0): Printing DDC gathered Modelines:
[ 3313.929] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 3313.929] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 3313.929] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 3313.929] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 3313.929] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 3313.929] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 3313.929] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 3313.929] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 3313.929] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 3313.929] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 3313.929] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 3313.929] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 3313.929] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 3313.929] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 3313.929] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 3313.930] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 3313.930] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 3313.930] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 3313.945] (II) fglrx(0): Cannot get EDID information for CRT2
[ 3334.961] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 3334.961] (II) fglrx(0): Using hsync ranges from config file
[ 3334.961] (II) fglrx(0): Using vrefresh ranges from config file
[ 3334.961] (II) fglrx(0): Printing DDC gathered Modelines:
[ 3334.961] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 3334.961] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 3334.961] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 3334.961] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 3334.961] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 3334.961] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 3334.961] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 3334.961] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 3334.961] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 3334.961] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 3334.961] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 3334.961] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 3334.977] (II) fglrx(0): Cannot get EDID information for CRT2
[ 3335.120] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 3335.120] (II) fglrx(0): Using hsync ranges from config file
[ 3335.120] (II) fglrx(0): Using vrefresh ranges from config file
[ 3335.120] (II) fglrx(0): Printing DDC gathered Modelines:
[ 3335.120] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 3335.120] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 3335.120] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 3335.120] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 3335.120] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 3335.120] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 3335.120] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 3335.120] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 3335.120] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 3335.120] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 3335.120] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 3335.120] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 3335.136] (II) fglrx(0): Cannot get EDID information for CRT2
[ 3335.193] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 3335.193] (II) fglrx(0): Using hsync ranges from config file
[ 3335.193] (II) fglrx(0): Using vrefresh ranges from config file
[ 3335.193] (II) fglrx(0): Printing DDC gathered Modelines:
[ 3335.193] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 3335.193] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 3335.193] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 3335.193] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 3335.193] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 3335.193] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 3335.193] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 3335.193] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 3335.193] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 3335.193] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 3335.193] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 3335.193] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 3335.193] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 3335.193] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 3335.193] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 3335.193] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 3335.194] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 3335.194] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 3335.211] (II) fglrx(0): Cannot get EDID information for CRT2
[ 3335.287] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 3335.287] (II) fglrx(0): Using hsync ranges from config file
[ 3335.288] (II) fglrx(0): Using vrefresh ranges from config file
[ 3335.288] (II) fglrx(0): Printing DDC gathered Modelines:
[ 3335.288] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 3335.288] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 3335.288] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 3335.288] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 3335.288] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 3335.288] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 3335.288] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 3335.288] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 3335.288] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 3335.288] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 3335.288] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 3335.288] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 3335.304] (II) fglrx(0): Cannot get EDID information for CRT2
[ 3335.304] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 3335.304] (II) fglrx(0): Using hsync ranges from config file
[ 3335.304] (II) fglrx(0): Using vrefresh ranges from config file
[ 3335.304] (II) fglrx(0): Printing DDC gathered Modelines:
[ 3335.304] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 3335.304] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 3335.304] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 3335.304] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 3335.304] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 3335.304] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 3335.304] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 3335.304] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 3335.304] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 3335.305] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 3335.305] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 3335.305] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 3335.305] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 3335.305] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 3335.305] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 3335.305] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 3335.305] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 3335.305] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 3335.320] (II) fglrx(0): Cannot get EDID information for CRT2
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 18:32
par FoolEcho
Si le xrandr fonctionne, je suppose qu'il faut configurer un machin en relation avec DFP2 au niveau de xorg pour orienter les bonnes sorties (device ? monitor ? screen ?)... mais là, d'emblée, je ne sais pas.
EDIT: recherche rapide
http://forum.ubuntu-fr.org/viewtopic.php?id=538601, tu gardes le monitor.conf et tu rajoutes la ligne suivante dans la section du device.conf:
(je trouve que ça sonne bien, mais c'est un peu, beaucoup, au pif, il faudrait chercher davantage et voir au niveau du man de xorg notamment)
C'est quoi ta configuration d'écran(s), d'ailleurs ?
EDIT: cette description a l'air de coller avec le man de xorg.conf en tous cas (Monitor Section):
With RandR 1.2-enabled drivers, monitor sections may be tied to specific outputs of the
video card. Using the name of the output defined by the video driver plus the identifier
of a monitor section, one associates a monitor section with an output by adding an option
to the Device section in the following format:
Option "Monitor-outputname" "monitorsection"
(for example, Option "Monitor-VGA" "VGA monitor" for a VGA output)
In the absence of specific association of monitor sections to outputs, if a monitor section
is present the server will associate it with an output to preserve compatibility for previ‐
ous single-head configurations.
Specifying video modes is optional because the server will use the DDC or other information
provided by the monitor to automatically configure the list of modes available. When modes
are specified explicitly in the Monitor section (with the Modes, ModeLine, or UseModes key‐
words), built-in modes with the same names are not included. Built-in modes with different
names are, however, still implicitly included, when they meet the requirements of the moni‐
tor.
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 19:14
par ourobolos
J'ai testé le lien monitor DFP2 vers monitor0, j'obtiens des jolis carrés de toutes les couleurs qui clignotent
Niveau écran, j'ai un écran principal 1680*1050 et une sortie vers un vidéoprojecteur que j'utilise rarement et pas encore configurée, j'attendais déjà de faire fonctionner proprement l'écran.
Re: [résolution]la résolution est mal détectée(en cours)
Publié : dim. 31 juil. 2011, 20:43
par FoolEcho
Je ne sais vraiment pas configurer ce truc, ça paraissait bien pourtant...
Solution pas terrible: tu pourrais rajouter le xrandr à l'ouverture de ta session graphique, mais bon...
Mais il y a un truc qui me chagrine: tu as quand même un appareil branché en vga (CRT-2 ), le xrandr le montre ainsi que le log... Ton écran lui est sur le port dvi ? Parce que j'ai un peu mieux regardé les logs et ce qui est sur le port dvi trouve lui la bonne résolution, même s'il ne l'applique pas... Est-ce que l'autre qui lui ne supporte pas cette résolution ne gène pas ? Tu pourrais essayer sans l'option précédente et sans rien sur ton port vga ?
Re: [résolution]la résolution est mal détectée(en cours)
Publié : mar. 02 août 2011, 17:39
par ourobolos
Si je débranche le vidéoprojecteur, tout se passe bien :
Code : Tout sélectionner
$xrandr
Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 1680 x 1680
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x 296mm
1680x1050 59.9*+ 60.0
1400x1050 60.0 59.9
1600x900 60.0 59.9
1360x1024 60.0 59.9
1280x1024 60.0 75.0 60.0
1440x900 60.0 59.9
1280x960 60.0 60.0
1280x800 60.0 60.0
1152x864 60.0 59.9 75.0
1280x768 60.0 60.0
1280x720 60.0 60.0
1024x768 60.0 75.0 70.1 60.0
800x600 60.0 72.2 75.0 60.3 56.2
640x480 60.0 75.0 72.8 66.8 59.9
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 disconnected (normal left inverted right x axis y axis)
sans manipulation supplémentaire, avec
Code : Tout sélectionner
$cat /etc/X11/xorg.conf.d/20-device.conf
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:2:0:0"
EndSection
$cat /etc/X11/xorg.conf.d/10-monitor.conf
Section "Monitor"
Identifier "Monitor0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
Modeline "1680x1050_60.00" 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync
Option "PreferredMode" "1680x1050_60.00"
EndSection
pour configuration
je teste sans monitor.conf
edit : sans monitor.conf même résultat, la résolution est bien affichée si l'écran sur le port DVI est seul sans le vidéoprojecteur sur le port VGA.
Re: [résolution]la résolution est mal détectée(en cours)
Publié : mar. 02 août 2011, 18:31
par FoolEcho
ourobolos a écrit :edit : sans monitor.conf même résultat, la résolution est bien affichée si l'écran sur le port DVI est seul sans le vidéoprojecteur sur le port VGA.
Doublement cool, ça isole le problème (et moi, ou un autre, pourra dépoussiérer le wiki sur la configuration de catalyst).
Bon, par contre, je ne sais pas comment configurer X tout en ayant le vidéoprojecteur branché et les bonnes résolutions... ("metamodes", peut-être... mais ça va dépendre aussi de l'emploi que tu veux en faire, je suppose). Si tu branches le vidéoprojecteur après coup, que se passe-t-il (y compris au niveau du log) ?

Re: [résolution]la résolution est mal détectée(en cours)
Publié : mar. 02 août 2011, 20:49
par ourobolos
le log :
http://pastebin.com/MrJ7Q208
l'après branchement du vidéoprojecteur commence à
avant branchement, la résolution de l'écran ne change pas
Code : Tout sélectionner
xrandr
Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 1680 x 1680
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x296mm
1680x1050 59.9*+ 60.0
1400x1050 60.0 59.9
1600x900 60.0 59.9
1360x1024 60.0 59.9
1280x1024 60.0 75.0 60.0
1440x900 60.0 59.9
1280x960 60.0 60.0
1280x800 60.0 60.0
1152x864 60.0 59.9 75.0
1280x768 60.0 60.0
1280x720 60.0 60.0
1024x768 60.0 75.0 70.1 60.0
800x600 60.0 72.2 75.0 60.3 56.2
640x480 60.0 75.0 72.8 66.8 59.9
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 disconnected (normal left inverted right x axis y axis)
après branchement
Code : Tout sélectionner
$xrandr
Screen 0: minimum 320 x 200, current 1680 x 1050, maximum 1680 x 1680
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 connected 1680x1050+0+0 (normal left inverted right x axis y axis) 474mm x296mm
1680x1050 59.9*+ 60.0
1400x1050 60.0 59.9
1600x900 60.0 59.9
1360x1024 60.0 59.9
1280x1024 60.0 75.0 60.0
1440x900 60.0 59.9
1280x960 60.0 60.0
1280x800 60.0 60.0
1152x864 60.0 59.9 75.0
1280x768 60.0 60.0
1280x720 60.0 60.0
1024x768 60.0 75.0 70.1 60.0
800x600 60.0 72.2 75.0 60.3 56.2
640x480 60.0 75.0 72.8 66.8 59.9
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 connected (normal left inverted right x axis y axis)
1600x1200 60.0 +
1400x1050 60.0
1600x900 60.0
1360x1024 60.0
1280x1024 60.0
1440x900 59.9
1280x960 60.0
1366x768 59.8
1360x768 60.0
1280x800 59.8
1152x864 60.0
1280x768 59.9
1280x720 60.0
1024x768 60.0
800x600 60.3
720x480 60.0
640x480 59.9
j'ai testé d'allumer le vidéoprojecteur, en le faisant chercher parmi les différentes sources, pour lui l'ordinateur n'existe pas, mais le log xorg a vu quelque-chose, le xrandr n'a pas changé :
Code : Tout sélectionner
[ 695.017] (II) fglrx(0): EDID vendor "SAM", prod id 997
[ 695.018] (II) fglrx(0): Using hsync ranges from config file
[ 695.018] (II) fglrx(0): Using vrefresh ranges from config file
[ 695.018] (II) fglrx(0): Printing DDC gathered Modelines:
[ 695.018] (II) fglrx(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 695.018] (II) fglrx(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
[ 695.018] (II) fglrx(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
[ 695.018] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz)
[ 695.018] (II) fglrx(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz)
[ 695.018] (II) fglrx(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
[ 695.018] (II) fglrx(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
[ 695.018] (II) fglrx(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
[ 695.018] (II) fglrx(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 695.018] (II) fglrx(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz)
[ 695.018] (II) fglrx(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
[ 695.018] (II) fglrx(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
[ 695.018] (II) fglrx(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz)
[ 695.018] (II) fglrx(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz)
[ 695.018] (II) fglrx(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
[ 695.018] (II) fglrx(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
[ 695.018] (II) fglrx(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 695.018] (II) fglrx(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 695.034] (II) fglrx(0): Cannot get EDID information for CRT2