Debian X下鼠标滚轮配置方法
    
 问题:Debian Unstable GNU/Linux,内核为
    2.4.18-k7。滚轮鼠标的配置。
    解决方法:
     # lsmod
    
    对比可以使用滚动功能的 Redhat Linux 9 下的 lsmod 结果,发现必要的模块没有加入内核,于是:
     # modprobe input
      # modprobe mousedev
      # modprobe usbcore
      # modprobe usb-uhci
    
    根据实际情况,加入需要的模块。
    相应地修改 /etc/X11/XF86Config-4 中鼠标的段落:
     Section "InputDevice"
      Identifier "Configured Mouse"
      Driver "mouse"
      Option "CorePointer"
      Option "Device" "/dev/input/mice"
      Option "Protocol" "ImPS/2"
      Option "Buttons" "5"
      Option "ZAxisMapping" "4 5"
      EndSection
    
    重新启动X,鼠标滚轮即可实现滚动功能。
    
    近更新:2004年10月2日
    末次更新: 
    首页 « GNU/Linux 首页