web-dev-qa-db-fra.com

Comment définir une résolution d'affichage permanente dans Ubuntu 16.04

Affichage inconnu dans Ubuntu 16.04. Définissez la résolution à l'aide de la commande xrandr, mais après le redémarrage, affichez la résolution lors de la réinitialisation.

Sudo cvt 1368 768 60

après cette sortie sera ici

# 1368x768 59,88 Hz (CVT) hsync: 47,79 kHz; pclk: 85,25 MHz Modeline "1368x768_60.00" 85,25 1368 1440 1576 1784 768 771 781 798 -hsync + vsync

ensuite

Sudo xrandr --newmode "1368x768_60.00" 85.25 1368 1440 1576 1784 768 771 781 798 -hsync + vsync

Sudo xrandr --addmode VGA-1 1368x768_60.00

l’affichage changera cette heure, mais après le redémarrage/la reconnexion, l’affichage par défaut sera 1024x768 (4: 3) et affichera l’erreur telle que

impossible d'appliquer la configuration stockée pour les moniteurs

mais je veux 1368x768 (16: 9).

J'utilise l'écran Dell S2216H et Intel Inbuilt HD Graphics.

2
R.S.Saini

Vous pouvez reconfigurer xOrg. Je l’ai fait en créant un fichier dans mon répertoire /usr/share/X11/xorg.conf.d.

Je l'ai fait avec vim:

Sudo vim /usr/share/X11/xorg.conf.d/5-monitor.conf

Voici un exemple de mon dossier.

Section "Monitor"
   Identifier "Monitor0"
   Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
   Modeline "3840x2160_30.0" 297.00 3840 4016 4104 4400 2160 2168 2178 2250 +hsync +vsync
   Modeline "4096x2160_24.0" 297.00 4096 5116 5204 5500 2160 2168 2178 2250 +hsync +vsync
EndSection
Section "Device"
   Identifier "Device0"
   Driver "intel"
EndSection
Section "Screen"
   Identifier "Screen0"
   Device "Device0"
   Monitor "Monitor0"
   DefaultDepth 24
   SubSection "Display"
      Depth 24
      Modes "3840x2160" "1920x1080"
   EndSubSection
EndSection

Pour savoir comment faire cela, vous pouvez suivre ce tutoriel: https://wiki.gentoo.org/wiki/Xorg/Multiple_monitors

J'ai rencontré ce problème il y a un moment.

2
Jermayne Williams

Voici à quoi pourrait ressembler la sortie de xrandr (j'ai raccourci la liste):

willem@TP420XU1604:~$ xrandr 
Screen 0: minimum 320 x 200, current 1600 x 900, maximum 8192 x 8192
LVDS-1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
   1600x900      60.01*+  40.00  
   1440x900      59.89  
   1360x768      59.80    59.96  
   .
   .
   400x300       60.32    56.34  
   320x240       60.05  
VGA-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
HDMI-3 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
willem@TP420XU1604:~$ 

Comme je l'ai dit dans mon commentaire, si vous n'avez aucune sortie, vous avez un problème avec votre pilote graphique. Utilisez lshw -c video pour obtenir des informations du système. Veuillez utiliser le post suivant pour résoudre le problème: https://askubuntu.com/questions/23238/how-can-i-find-what-video-driver-is-in-use-on-my-system

0
user680858