[问题]怎样关闭笔记本上的触摸板???

各种窗口管理器和美化相关
头像
chgc521
帖子: 204
注册时间: 2008-04-28 18:00
来自: 台州

[问题]怎样关闭笔记本上的触摸板???

#1

帖子 chgc521 » 2008-09-15 14:10

我打字老要按到触摸板,UBUNTU上我知道怎么关!!KDE上不知道怎么弄!

有知道告知下!!谢谢!!!!
rongzhengmao
帖子: 16
注册时间: 2007-04-08 19:07

#2

帖子 rongzhengmao » 2008-09-17 9:16

1、脚本方式
你可以在网上找一下,应该在ubuntu的wiki中有这些文章,我以前找到并成功设置过。

2、BOIS方式
我的本子是IBM T43,进入BOIS,直接把触摸板给关了。
头像
chgc521
帖子: 204
注册时间: 2008-04-28 18:00
来自: 台州

#3

帖子 chgc521 » 2008-09-17 9:49

rongzhengmao 写了:1、脚本方式
你可以在网上找一下,应该在ubuntu的wiki中有这些文章,我以前找到并成功设置过。

2、BOIS方式
我的本子是IBM T43,进入BOIS,直接把触摸板给关了。
wiki里的我哪个我知道的!!不过还是谢谢你了!!
sejishikong
帖子: 36
注册时间: 2005-12-06 15:51

Re: [问题]怎样关闭笔记本上的触摸板???

#4

帖子 sejishikong » 2008-09-26 10:10

装ksynapatics,可以控制很多参数。包括临时禁用触摸板。
头像
想入非非
帖子: 8078
注册时间: 2008-07-14 22:42
来自: Beijing
联系:

Re: [问题]怎样关闭笔记本上的触摸板???

#6

帖子 想入非非 » 2008-09-27 21:55

ubuntu上我也知道。。。但是几乎不用kde :em09
Ubuntu User
傻傻飞鱼
帖子: 1
注册时间: 2008-10-25 22:23

Re: [问题]怎样关闭笔记本上的触摸板???

#8

帖子 傻傻飞鱼 » 2008-10-26 13:20

用这个就可以关掉。

代码: 全选

sudo rmmod psmouse
用这个可以打开

代码: 全选

sudo modprobe psmouse
头像
bones7456
帖子: 8495
注册时间: 2006-04-12 20:05
来自: 杭州
联系:

Re: [问题]怎样关闭笔记本上的触摸板???

#9

帖子 bones7456 » 2008-10-26 13:26

关注我的blog: ε==3
grissiom
帖子: 9
注册时间: 2008-09-08 14:39

Re: [问题]怎样关闭笔记本上的触摸板???

#10

帖子 grissiom » 2008-10-26 18:25

bones7456 写了:
:em03
:em04
头像
jarodlau
帖子: 501
注册时间: 2005-09-06 20:34
联系:

Re: [问题]怎样关闭笔记本上的触摸板???

#11

帖子 jarodlau » 2008-10-26 18:47

不错的方法,这样就方便多了,要不带本本出差好麻烦
mpxsqtomcat
帖子: 2
注册时间: 2009-10-05 10:14

Re: [问题]怎样关闭笔记本上的触摸板???

#12

帖子 mpxsqtomcat » 2009-10-05 10:19

http://badsol.yo2.cn/2009/07/19/ubuntu开启关闭触摸板/
这篇文章是针对ubuntu9.04,我在我的8.10上试了下也是ok的。
推荐这篇文章,不错。linux下还是用脚本来控制灵活

$cd ~

创建一个叫Bin的目录

$mkdir Bin

进入Bin目录

$cd Bin

创建文件touchpad.sh

$touch touchpad.sh

编辑文件touchpad.sh

$gedit touchpad.sh

粘贴以下信息

#!/bin/sh
# touchpad.sh Set the touchpad enabled to on or off.
#
# Version: @(#)touchpad.sh 0.03 19/07/2009 badsol125@gmail.com

touchpad_on(){
/usr/bin/gconftool --set --type bool /desktop/gnome/peripherals/mouse/touchpad_enabled true
if test $? -eq 0;then
echo '启用成功'
else
echo '启用失败'
fi
}

touchpad_off(){
/usr/bin/gconftool --set --type bool /desktop/gnome/peripherals/mouse/touchpad_enabled false
if test $? -eq 0;then
echo '禁用成功'
else
echo '禁用失败'
fi
}

case "$1" in
on)
touchpad_on
;;
off)
touchpad_off
;;
*)
if `/usr/bin/gconftool --get /desktop/gnome/peripherals/mouse/touchpad_enabled`;then
touchpad_off
else
touchpad_on
fi
;;
esac

exit 0

保存,并赋予可执行权限。

$chmod 755 touchpad.sh

此时,运行这个脚本就可以达到效果了。
头像
ljweb
帖子: 703
注册时间: 2008-04-09 13:27
联系:

Re: [问题]怎样关闭笔记本上的触摸板???

#13

帖子 ljweb » 2009-10-12 11:46

首选项里有的呀
附件
Screenshot.png
Screenshot.png (10.51 KiB) 查看 4557 次
--------------------------------------------------
--------------------------------------------------
iamcheyan
帖子: 111
注册时间: 2007-07-27 23:30
来自: vkinG城堡
联系:

Re: [问题]怎样关闭笔记本上的触摸板???

#14

帖子 iamcheyan » 2009-10-13 7:40

ljweb 写了:首选项里有的呀
你那是gnome环境下,楼主指的是原生KDE环境……
tusooa
帖子: 6548
注册时间: 2008-10-31 22:12
系统: 践兔
联系:

Re: [问题]怎样关闭笔记本上的触摸板???

#15

帖子 tusooa » 2009-11-06 23:21

改xorg.conf,最通用的方法 :em06 :em06

代码: 全选

] ls -ld //
回复