Chinaunix首页 | 论坛 | 博客
  • 博客访问: 101441371
  • 博文数量: 19283
  • 博客积分: 9968
  • 博客等级: 上将
  • 技术积分: 196062
  • 用 户 组: 普通用户
  • 注册时间: 2007-02-07 14:28
文章分类

全部博文(19283)

文章存档

2011年(1)

2009年(125)

2008年(19094)

2007年(63)

分类: LINUX

2008-04-29 08:11:15

作者: nutra  出自:
在T23里面装了Ubuntu 8.04后,鼠标的中间按键不能像Win下一样工作,这样在看网页的时候就不能滑动,很不方便,今天上网查了一下,原来已经有解决办法,而且很简单,效果很好。

第一步:
sudo vi /etc/X11/xorg.conf

第二步:
在里面找到:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection

第三步:
在Endsection前添加两行:
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
整个Section是:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"

Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
EndSection

第四步:
为了要是配置起效,需要重启Gnome,我使用的方法是登出然后再登入。
阅读(278) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~