J'ai un écran 2560x1440 sur un adaptateur graphique Intel HD. Comme Intel HD ne peut pas, par défaut, gérer un affichage supérieur à 1920x1200, j'ai utilisé dans Ubuntu 12.04 l'astuce suivante (dérivée de https://plus.google.com/+LinusTorvalds/posts/HQsCY7ErAL4 ):
xrandr --newmode "2560x1440" 222.52 2560 2720 2992 3424 1440 1441 1444 1477 -HSync +Vsync
xrandr --addmode HDMI1 2560x1440
xrandr --output HDMI1 --mode 2560x1440
La modélisation a été trouvée en utilisant
gtf 2560 1440 44
Dans Ubuntu 14.04, cela ne fonctionne plus : Lorsque j'essaie de passer au mode 2560x1440, j'obtiens
xrandr: Configure crtc 0 failed
Entrées Xorg.log correspondantes :
[ 1067.430] (II) intel(0): switch to mode 2560x1440@40.0 on HDMI1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 1067.824] (EE) intel(0): failed to set mode: Invalid argument
[ 1067.874] (II) intel(0): switch to mode 1920x1200@60.0 on HDMI1 using pipe 0, position (0, 0), rotation normal, reflection none
Une idée pour contourner ce problème ?