Não é possível girar a tela com xrandr

4

OS: Linux Mint

A saída de inxi -xG :

Graphics:  Card: NVIDIA GF108 [GeForce GT 440] bus-ID: 02:00.0 
          X.Org: 1.13.0 drivers: vesa (unloaded: fbdev) Resolution: 
[email protected] 
         GLX Renderer: Gallium 0.4 on llvmpipe (LLVM 3.3, 128 bits) GLX
Version: 2.1 Mesa 9.2.0 Direct Rendering: Yes

Pretende virar a tela do PC. Informações acima sobre a placa gráfica atual e o sistema operacional.

$ xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 320 x 400, current 800 x 600, maximum 800 x 600
default connected 800x600+0+0 0mm x 0mm
  800x600         0.0* 
  640x480        60.0  
  640x400         0.0  
  320x400         0.0 

Até agora, tentei seguir as dicas disponíveis na internet, sem sucesso. Minha principal suspeita é sobre o driver da Nvidia. Alguém pode esclarecer essa questão?

Este comando: xrandr -o rotate não funciona.

    
por Jack 15.02.2014 / 15:57

2 respostas

2

Você precisa usar --rotate nas versões mais recentes de xrandr e não na -o .

Exemplos

$ xrandr --output LVDS1 --rotate left
$ xrandr --output LVDS1 --rotate right
$ xrandr --output LVDS1 --rotate normal

Qual é a minha saída?

Você pode descobrir o nome da sua exibição usando xrandr sem nenhum argumento.

$ xrandr
Screen 0: minimum 320 x 200, current 1440 x 900, maximum 8192 x 8192
LVDS1 connected primary 1440x900+0+0 (normal left inverted right x axis y axis) 303mm x 190mm
   1440x900       60.0*+   50.0  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
HDMI3 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)
DP3 disconnected (normal left inverted right x axis y axis)

Cartões NVidia

Com esta placa gráfica, você provavelmente precisará adicionar isso à sua seção "Dispositivo" do seu arquivo xorg.conf .

Option    "RandRRotation" "True"

Terá de reiniciar o X11 para que esta alteração tenha efeito. Depois disso, xrandr você poderá rodar sua tela.

Referências

por 15.02.2014 / 19:27
0

Atualize seu pacote xorg-server. Timo Aaltonen corrigiu esse problema.

    
por 15.09.2017 / 11:04

Tags