使VMWare下的Ubuntu支持鼠標滾輪

使VMWare下的Ubuntu支持鼠標滾輪

 

在VMWare下裝完Ubuntu操作系統之後,發現鼠標滾輪不能用,幾不爽,就上網搜了一下,找到了解決方法,現共享下:

 

在/etc/X11/文件夾下有一個文件叫xorg.conf的文件,其關於鼠標配置的如下:

 

Section "InputDevice"
    Identifier    "configured Mouse"
    Driver        "vmmouse"
    Option        "CorePointer"
    Option        "Device"    "/dev/input/mice"
EndSection

 

將其更改爲:

 

Section "InputDevice"
    Identifier    "Mouse0"
    Driver        "mouse"
    Option        "Protocol" "IMPS/2"
    Option        "Device"    "/dev/input/mice"
    Option         "Emulate3Buttons" "yes"
    Option         "ZAixsMapping" "4 5"
EndSection

 

註銷並重新登陸下,看看是不是滾輪可以用了?

http://www.linux521.com/2009/newbie/200905/3455_2.html對本文有所貢獻

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章