Não é possível encontrar a resolução de tela ideal

1

Desde uma semana eu sou um usuário do Ubuntu. Comutado do windows desde que minha licença xp paga não é mais suportada. Estou muito satisfeito com o Ubuntu, funciona perfeitamente!

Apenas um pequeno problema, essa é a minha resolução de tela. Estou usando um monitor Iiyama ProLite E1902WSV no Ubuntu 12.04 LTS

Quando coloco o código xrandr no terminal, recebo o seguinte:

Screen 0: minimum 320 x 200, current 1024 x 768, maximum 4096 x 4096
VGA-1 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  
DVI-D-1 disconnected (normal left inverted right x axis y axis)
TV-1 disconnected (normal left inverted right x axis y axis)

E agora o problema começa, porque a resolução de tela ideal para o meu Iiyama não está nessa lista. Eu olhei em volta na internet e a melhor resolução deve ser 1440x900 ( fonte )

Alguém sabe como consertar isso? Obrigado antecipadamente!

::: EDITAR :::

Após a solução de Sylvain Pineau, iniciei meu computador esta manhã e recebi a seguinte mensagem.

none of the selected modes were compatible with the possible modes:
Trying modes for CRTC 143
CRTC 143: trying mode 1024x768@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 143: trying mode 800x600@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 143: trying mode 800x600@56Hz with output at 1440x900@60Hz (pass 0)
CRTC 143: trying mode 848x480@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 143: trying mode 640x480@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 143: trying mode 1024x768@60Hz with output at 1440x900@60Hz (pass 1)
CRTC 143: trying mode 800x600@60Hz with output at 1440x900@60Hz (pass 1)
CRTC 143: trying mode 800x600@56Hz with output at 1440x900@60Hz (pass 1)
CRTC 143: trying mode 848x480@60Hz with output at 1440x900@60Hz (pass 1)
CRTC 143: trying mode 640x480@60Hz with output at 1440x900@60Hz (pass 1)
Trying modes for CRTC 144
CRTC 144: trying mode 1024x768@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 144: trying mode 800x600@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 144: trying mode 800x600@56Hz with output at 1440x900@60Hz (pass 0)
CRTC 144: trying mode 848x480@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 144: trying mode 640x480@60Hz with output at 1440x900@60Hz (pass 0)
CRTC 144: trying mode 1024x768@60Hz with output at 1440x900@60Hz (pass 1)
CRTC 144: trying mode 800x600@60Hz with output at 1440x900@60Hz (pass 1)
CRTC 144: trying mode 800x600@56Hz with output at 1440x900@60Hz (pass 1)
CRTC 144: trying mode 848x480@60Hz with output at 1440x900@60Hz (pass 1)
CRTC 144: trying mode 640x480@60Hz with output at 1440x900@60Hz (pass 1)

Existe uma solução para isso também? Eu tenho a mesma resolução de tela como no começo 1024x768 (4: 3) de novo ...

    
por Thijs 25.03.2014 / 12:28

1 resposta

3

Primeiro, tente definir uma exibição VIRTUAL1:

xrandr --newmode "1440x900_60.00" 106.47 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync

E use-o para definir o perfil de VGA-1 :

xrandr --addmode VGA-1 1440x900_60.00
    
por Sylvain Pineau 25.03.2014 / 21:08