+ -
当前位置:首页 → 问答吧 → 鼠标有问题

鼠标有问题

时间:2004-08-30

来源:互联网

现状:鼠标滞后,且几乎就呆在屏幕的边缘,很难拉到屏幕中央.
鼠标类型: PS/2 双飞燕.
版本:FreeBSD5.1
请教大家,问题在哪里?
下面是XFree86Config
引用:
Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
EndSection

Section "Module"
Load "dbe"
Load "dri"
Load "extmod"
Load "glx"
Load "record"
Load "xtrap"
Load "speedo"
Load "type1"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/sysmouse"
EndSection

Section "Monitor"

#DisplaySize 310 230 # mm
Identifier "Monitor0"
VendorName "PHL"
ModelName "PHILIPS 107F5"
Option "DPMS"
EndSection

Section "Device"

### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "SWcursor" # [<bool>]
#Option "HWcursor" # [<bool>]
#Option "PciRetry" # [<bool>]
#Option "SyncOnGreen" # [<bool>]
#Option "NoAccel" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "Overlay" # [<str>]
#Option "MGASDRAM" # [<bool>]
#Option "ShadowFB" # [<bool>]
#Option "UseFBDev" # [<bool>]
#Option "ColorKey" # <i>
#Option "SetMclk" # <freq>
#Option "OverclockMem" # [<bool>]
#Option "VideoKey" # <i>
#Option "Rotate" # [<str>]
#Option "TexturedVideo" # [<bool>]
#Option "Crtc2Half" # [<bool>]
#Option "Crtc2Ram" # <i>
#Option "Int10" # [<bool>]
#Option "AGPMode" # <i>
#Option "AGPSize" # <i>
#Option "DigitalScreen1" # [<bool>]
#Option "DigitalScreen2" # [<bool>]
#Option "TV" # [<bool>]
#Option "TVStandard" # [<str>]
#Option "CableType" # [<str>]
#Option "NoHal" # [<bool>]
#Option "SwappedHead" # [<bool>]
#Option "DRI" # [<bool>]
#Option "MergedFB" # [<bool>]
#Option "Monitor2HSync" # [<str>]
#Option "Monitor2VRefresh" # [<str>]
#Option "Monitor2Position" # [<str>]
#Option "MetaModes" # [<str>]
Identifier "Card0"
Driver "mga"
VendorName "Matrox Graphics, Inc."
BoardName "MGA G400 AGP"
BusID "PCI:1:0:0"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Depth 1
EndSubSection
SubSection "Display"
Depth 4
EndSubSection
SubSection "Display"
Depth 8
EndSubSection
SubSection "Display"
Depth 15
EndSubSection
SubSection "Display"
Depth 16
EndSubSection
SubSection "Display"
Depth 24
EndSubSection
EndSection

作者: nobody_am   发布时间: 2004-08-30

把鼠标协议改为 auto 让自动监测看看

作者: sunjinsong   发布时间: 2004-08-31

试了,还是不行。看来得让我买个新鼠标了。呵呵。

作者: nobody_am   发布时间: 2004-08-31

/stand/sysinstall或者那个配置Xfree86的工具,配置鼠标时enable控制台下的鼠标daemon,然后鼠标 /dev/sysmouse,协议也选 sysmouse

作者: clam   发布时间: 2004-09-02

我试了一下USB鼠标,完全可以运行。

用PS/2鼠标时,我试便了所有协议,没有一个是可行的。大概它跟哪个设备冲突。

否则,世道不一样了,能支持USB,不可能不支持PS/2?

另外,Windows 和 redhat9 下,我的PS/2鼠标完全正确。redhat9 的鼠标协议
是IMPS/2,可惜FreeBSD不支持。

作者: nobody_am   发布时间: 2004-09-02

PS2的鼠标我还没有见过不能用的 (当然鼠标坏掉了除外)

/stand/sysintsall >> configure >> XFree86 >> XF86cfg-textmode
>> auto

作者: linfeng.CN   发布时间: 2004-09-03

用/stand/sysintsall >> configure >> XFree86 >> XF86cfg-textmode
选X不要通过控制台下的鼠标daemon访问鼠标
然后鼠标协议选PS/2,鼠标设备改为/dev/psm0

作者: 风儿轻轻吹   发布时间: 2004-09-04

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/sysmouse"
EndSection

改为

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psm0"
EndSection

作者: 风儿轻轻吹   发布时间: 2004-09-04

楼上的说法好像是在linux 里面都是这么配置的 ,至少我在bsd里面没有成功过 可能使我的鼠标太怪了

作者: sunjinsong   发布时间: 2004-09-04

freebsd faq 里面有的

作者: 风儿轻轻吹   发布时间: 2004-09-05

斑竹是老瓦的球迷?

偶找到原因了,原来插了两块声卡,抽了一块,鼠标就正常了。

作者: nobody_am   发布时间: 2004-09-05