Two 24 "exibido verticalmente no Ubuntu

0

Eu só tenho dois monitores de 24 polegadas, e quero que eles sejam exibidos verticalmente lado a lado, onde as telas são colocadas horizontalmente umas em relação às outras, mas as telas são giradas verticalmente. Eu tenho um, mas não consigo descobrir o comando para obter os dois verticais e exibindo.

xorg.conf:

Section "Monitor"
    Identifier  "Configured Monitor"
EndSection

Section "Screen"
    Identifier  "Default Screen"
    Monitor     "Configured Monitor"
    Device      "Configured Video Device"
    SubSection "Display"
        Virtual 3840 1200
    EndSubSection
EndSection

Section "Device"
    Identifier  "Configured Video Device"
EndSection


xrandr:

Screen 0: minimum 320 x 200, current 3840 x 1200, maximum 3840 x 1200
VGA connected 1920x1200+0+0 (normal left inverted right x axis y axis) 519mm x 324mm
   1920x1200      60.0*+
   1600x1200      60.0  
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.0     60.0  
   800x600        75.0     60.3  
   640x480        75.0     59.9  
   720x400        70.1  
TMDS-1 connected 1920x1200+1920+0 (normal left inverted right x axis y axis) 518mm x 324mm
   1920x1200      60.0*+
   1600x1200      60.0  
   1280x1024      75.0     60.0  
   1152x864       75.0  
   1024x768       75.0     60.0  
   800x600        75.0     60.3  
   640x480        75.0     59.9  
   720x400        70.1  

alguma pista sobre o comando para torná-los verticais?

    
por QuinnBaetz 21.06.2010 / 19:40

2 respostas

0

Se você estiver usando o driver nv, adicione esta linha na parte inferior da seção "Dispositivo":

Option "Rotate" "CW"

Deve ser semelhante a:

Section "Device"
    Identifier  "Generic Video Card"
    Driver      "nv"
    Option      "Rotate" "CW"
EndSection

Use o CCW para o Counter ClockWise. Reinicie e veja se funciona.

Se isso não funcionar, adicione esta linha na parte inferior da seção "Dispositivo":

Option "RandRRotation" "On"

reinicialize e veja se a tela e o botão girar estão disponíveis em: system > preferences > screen resolution .

    
por 21.06.2010 / 20:47
0

Eu adicionei isso ao meu arquivo xorg.conf:

SubSection "Display"
        Virtual 2400 1920
    EndSubSection

Eu então executei estes três comandos no terminal:

xrandr --output TMDS-1 --rotate left
xrandr --output VGA --rotate left
xrandr --output VGA --left-of TMDS-1
    
por 21.06.2010 / 21:11