Bonsoir,
--------------------------------------------------------------------------------------------------------------------------
Natty 11.04
--------------------------------------------------------------------------------------------------------------------------
Voici quelques lignes pour activer la résolution "1360x768" avec la configuration suivante :
TV LCD SAMSUNG LE32R51B 32'' -
Intel 82945G/GZ (rev 02) - Natty 11.04 beta 1
Ce changement de résolution est virtuelle (nativement le LCD semble être en 1024x768 )
Avec ceci on fait le tour du proprio :
@ordisalon:~$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
VGA1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.0*
800x600 60.3 56.2
848x480 60.0
640x480 59.9
Ici on recherche les modelines pour la résolution suivante 1360x768" :
cvt 1360 768
@ordisalon:~$ cvt 1360 768
# 1360x768 59.80 Hz (CVT) hsync: 47.72 kHz; pclk: 84.75 MHz
Modeline "1360x768_60.00" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
On ajoute cette nouvelle modeline :
xrandr --newmode "1360x768_60.00" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
on applique le tout (ne nécessite pas de redémarrage de X) :
xrandr --addmode VGA1 1360x768_60.00
rendre permanent pour l'utilisateur (uniquement), creer et editer ce fichier :
gedit ~/.xprofile
xrandr --newmode "1360x768_60.00" 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync
xrandr --addmode VGA1 1360x768_60.00
biblio :
https://wiki.ubuntu.com/X/Config/Resolution#Adding%20undetected%20resolutions
--------------------------------------------------------------------------------------------------------------------------
Karmic 9.10
--------------------------------------------------------------------------------------------------------------------------
Voici quelques lignes pour activer la résolution "1360x768" avec la configuration suivante :
TV LCD SAMSUNG LE32R51B 32'' - Intel 82915G/GV/910GL - Karmic 9.10
Editer le fichier xorg.conf
sudo gedit /etc/X11/xorg.conf
Copier ceci dans le fichier xorg.conf pour bénéficier d'une résolution de 1360x768 :
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
Option "DPMS"
HorizSync 30-55
VertRefresh 50-65
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
SubSection "Display"
Depth 24
Modes "1360x768" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Bonne soirée @ tous ;o)