小小菜鸟的web菜园子

web开发学习。好记性不如烂笔头。每天进步一点点!

导航

vmware下ubuntu 鼠标不起作用解决方法

修改/etc/X11/xorg.conf文件
原文件对应内容
Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "vmmouse"
        Option                "CorePointer"
        Option                "Device"        "/dev/input/mice"
EndSection
修改后的内容
Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "mouse"
        Option                 "Protocol"         "IMPS/2"
        Option                "CorePointer"
        Option                "Device"        "/dev/input/mice"
EndSection
在网上找了好长时间才找到的,共享出来。   

posted on 2008-07-18 10:59  『小小菜鸟』  阅读(2222)  评论(2)    收藏  举报