Bonjour
Depuis ajourd'hui la résolution de mon écran reste en 1360*768, alors qu'avant j'avais une résolution en 1680*1050.
Depuis je n'arrives plus a modifier ma résolution.
Je suis sous Fedora 9 sulphur et j'utilise le pilote radeon pour mon ati x1550 (tout marchait très bien avant)

Voici une copie de mon xorg.conf :
----------------------------------------------------------------------------------------------------------------------------------------------

# Xorg configuration created by system-config-display

Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr"
Option "XkbVariant" "latin9"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection

----------------------------------------------------------------------------------------------------------------------------------------------------

Merci d'avance
Dans la section screen de ton fichier rajoute cette ligne :
Option "MetaModes" "1680×1050"
et redémarre ton serveur X.

Ca devrait fonctionner.
Après modification j'obtiens donc le xorg.conf suivant :
--------------------------------------------------------------------------------------------------------------------------------------------------------------
# Xorg configuration created by system-config-display

Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr"
Option "XkbVariant" "latin9"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
Option "MetaModes" "1680×1050"
EndSection
----------------------------------------------------------------------------------------------------------------------------
Mais je ne peux toujours pas changer la résolution (les modes d'affichages restent jusqu'a 1360*768
Tu es sûr de ne pas être en 1680x1050 même si les outils graphique de gestion proposent une résolution max inférieure ? J'avais ce genre de problème il me semble quand j'avais une vieille ATI, mais la résolution définie dans xorg.conf était bien appliquée.
J'ai modifié mon xorgconf comme suit (ajout de l'option "modes" a SubSection "Display") et ça marche !

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
# Xorg configuration created by system-config-display

Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"

# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr"
Option "XkbVariant" "latin9"
EndSection

Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1680x1050"
HorizSync 31.5 - 65.5
VertRefresh 56.0 - 65.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
Option "MetaModes" "1680×1050"
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1680x1050" "1600x1024" "1440x900" "1360x768" "1152x864" "1024x768" "800x600" "720x400" "640x480" "640x400" "640x350"
EndSubSection
EndSection

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Merci quand même
Au revoir
Autant pour moi je m'étais trompé. Du coup tu peux enlever la ligne que je t'ai dit de rajouter.