Como desabilitar a rolagem horizontal dentro do virtualbox no guest do Ubuntu, o host do Windows 7?

2

Estou usando o Windows 7 como Host, o Ubuntu Karmic como sistema operacional convidado com as ferramentas guest instaladas e recebo uma falha irritante ao alternar do host para a máquina convidada: A rolagem vertical muda para horizontal! (usando a roda do mouse). Como eu realmente não me importo com a rolagem horizontal, como posso desabilitar isso?

Eu verifiquei a web e a única coisa que encontrei foi para jogar no arquivo xorg.conf e adicionar na seção "InputDevice"

Option "ZAxisMapping" "4 5" 

que habilitaria a rolagem vertical apenas. A coisa é, eu não tenho essa seção no meu arquivo de configuração, então eu acho que eu precisaria adicionar

Section "InputDevice"
    Identifier "VBoxMouse"
    Driver "vboxmouse"
    Option "ZAxisMapping" "4 5"
EndSection

Mas isso parece não funcionar depois de reiniciar o xserver.

Alguma solução alternativa para isso?

    
por Steven Rosato 22.03.2010 / 18:39

2 respostas

4

Encontrei uma pequena solução que publiquei na pergunta duplicada do stackoverflow . Um virtualbox [bug] [2] está basicamente por trás disso tudo. Citando a minha própria resposta do stackoverflow, se você não quiser ir no site:

Well since the the ZAxisMapping should already disable the horizontal scrolling in my question, but of course did still not seem to work, I have found that it was actually a virtualbox bug that has something to do with the ALT key modifier. Basically the scrolling will switch from vertical to horizontal if the ALT key is pressed at the same time as falling into the virtualbox window. This happened to me because I was using dexpot in Win7 with the desktop switching feature using the alt key.

Until the bug is corrected, the workaround is after getting into the vbox window and noticing that scrolling was switched to horizontal, you need to hit the host key, hit ALT again, then manually click the vbox window to return to it, without touching the alt button. For now, I do not use the alt key for switching desktops, and everything works fine again.

    
por 22.04.2010 / 20:03
0

Eu tinha resolvido esse problema, atingindo as principais opções da VM

view -> Auto-resize Guest Display

    
por 22.12.2017 / 01:02