[问题]usb鼠标与usb读卡器冲突导致鼠标不能使用的问题

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
huangfr
帖子: 74
注册时间: 2007-03-25 19:33

[问题]usb鼠标与usb读卡器冲突导致鼠标不能使用的问题

#1

帖子 huangfr » 2007-04-12 16:52

我的电脑是hp品牌机,自带读卡器。
我的鼠标是usb口的,9合一读卡器是也是用的usb控制器。
安装完ubuntu后,出现鼠标不能识别的问题,很是郁闷,但是偶尔它又能被识别出来,我怀疑是ubuntu对读卡器驱动识别不正确,导致usb控制器出问题,鼠标不能使用。
现在我解决的办法就是开机的时候把鼠标拔出来,进入系统了再插入鼠标,这样就没有什么问题,其实我是不用读卡器的,很想把这个硬件禁用了,或者不要加载这个驱动,不知道如何进行,请高手赐教!!!
每次开机都要记得拔鼠标很难受啊,插着鼠标10次有9次认不出来,郁闷啊。
leopard10
帖子: 59
注册时间: 2006-05-21 14:11

#2

帖子 leopard10 » 2007-04-12 17:13

禁用自带读卡器

代码: 全选

sudo echo "blacklist tifm_core" >> /etc/modprobe.d/blacklist
鼠标方面
能贴上 xorg.conf 看看吗?
huangfr
帖子: 74
注册时间: 2007-03-25 19:33

#3

帖子 huangfr » 2007-04-12 18:17

不好意思,我才刚开始学习使用linux,请问你说的 xorg.conf文件的路径是什么呢?
还有就是ubuntu下怎么使用文件搜索阿,郁闷。
huangfr
帖子: 74
注册时间: 2007-03-25 19:33

#4

帖子 huangfr » 2007-04-14 0:12

路径:/etc/X11

代码: 全选

Section "Files"
	FontPath	"/usr/share/X11/fonts/misc"
	FontPath	"/usr/share/X11/fonts/cyrillic"
	FontPath	"/usr/share/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/share/X11/fonts/Type1"
	FontPath	"/usr/share/X11/fonts/100dpi"
	FontPath	"/usr/share/X11/fonts/75dpi"
	FontPath	"/usr/share/fonts/X11/misc"
	# path to defoma fonts
	FontPath	"/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
	Load	"i2c"
	Load	"bitmap"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"kbd"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xorg"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"us"
	Option		"XkbOptions"	"lv3:ralt_switch"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/input/mice"
	Option		"Protocol"		"ExplorerPS/2"
	Option		"ZAxisMapping"		"4 5"
	Option		"Emulate3Buttons"	"true"
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "Device"
	Identifier	"NVIDIA Corporation NV43 [GeForce 6600]"
	Driver		"nv"
	BusID		"PCI:1:0:0"
EndSection

Section "Monitor"
	Identifier	"HP mx705"
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"NVIDIA Corporation NV43 [GeForce 6600]"
	Monitor		"HP mx705"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
EndSection

Section "DRI"
	Mode	0666
EndSection

huangfr
帖子: 74
注册时间: 2007-03-25 19:33

#5

帖子 huangfr » 2007-04-14 11:40

用二楼朋友给的命令还是不行阿,说拒绝阿。

代码: 全选

:~$ sudo echo "blacklist tifm_core" >> /etc/modprobe.d/blacklist
bash: /etc/modprobe.d/blacklist: Permission denied

回复