Como definir a resolução de exibição permanente no Ubuntu 16.04

0

Exibição desconhecida no Ubuntu 16.04. Defina Resolução usando o comando xrandr, mas após reiniciar a resolução de exibição na redefinição.

sudo cvt 1368 768 60

após esta saída aqui

#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

então

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

A exibição

mudará esse horário, mas após o reinício / novo login, o display é alterado para 1024x768 (4: 3) e mostra o erro como

could not apply the stored configuration for monitors

mas eu quero 1368x768 (16: 9).

Estou usando a tela Dell S2216H e a tecnologia Intel Inbuilt HD.

    
por Ravi 18.05.2017 / 06:36

2 respostas

1

Você pode reconfigurar o xOrg. Eu fiz isso criando um arquivo no meu diretório /usr/share/X11/xorg.conf.d .

Eu fiz isso usando o vim:

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

Aqui está um exemplo do meu arquivo.

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

Para obter instruções sobre como fazer isso, siga este tutorial: link

Eu me deparei com esse problema há pouco tempo.

    
por Jermayne Williams 22.11.2017 / 16:37
0

É assim que a saída de xrandr pode parecer (encurtei a lista):

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:~$ 

Como eu disse no meu comentário, se você não tem nenhuma saída, acho que você tem um problema com o seu driver gráfico. Use lshw -c video para obter informações do sistema. Por favor, use o seguinte post para resolver problemas: https://askubuntu.com/questions/23238/how-can-i-find-what-video-driver-is-in-use-on-my-system

    
por user680858 19.05.2017 / 18:22