|
发表于 2006-1-8 11:41:53
|
显示全部楼层
对啊,你在 xorg.conf 里设置 protocol 为 endev 肯定是错误的。目前新鼠标配置程序能支持的鼠标类型和协议如下:
[code:1]
# (shortname: make, model, gpm protocol, X protocol, input protocol, device, emulate3)
"ascii": (N_("ASCII"), N_("MieMouse (serial)"),
"ms3", "IntelliMouse", "ms3", "ttyS", 0),
"generic": (N_("Generic"), N_("2 Button Mouse (serial)"),
"Microsoft", "Microsoft", "bare", "ttyS", 1),
"generic3": (N_("Generic"), N_("3 Button Mouse (serial)"),
"Microsoft", "Microsoft", "ms", "ttyS", 0),
"genericps/2": (N_("Generic"), N_("2 Button Mouse (PS/2)"),
"imps2", "IMPS/2", None, "input/mice", 1),
"generic3ps/2": (N_("Generic"), N_("3 Button Mouse (PS/2)"),
"imps2", "IMPS/2", None, "input/mice", 0),
"genericwheelps/2": (N_("Generic"), N_("Wheel Mouse (PS/2)"),
"imps2", "IMPS/2", None, "input/mice", 0),
"genericusb": (N_("Generic"), N_("2 Button Mouse (USB)"),
"imps2", "IMPS/2", None, "input/mice", 1),
"generic3usb": (N_("Generic"), N_("3 Button Mouse (USB)"),
"imps2", "IMPS/2", None, "input/mice", 0),
"genericwheelusb": (N_("Generic"), N_("Wheel Mouse (USB)"),
"imps2", "IMPS/2", None, "input/mice", 0),
"geniusnm": (N_("Genius"), N_("NetMouse (serial)"),
"ms3", "IntelliMouse", "ms3", "ttyS", 1),
"thinking": (N_("Kensington"), N_("Thinking Mouse (serial)"),
"Microsoft", "ThinkingMouse", "bare", "ttyS", 1),
"logitech": (N_("Logitech"), N_("C7 Mouse (serial, old C7 type)"),
"Logitech", "Logitech", "mman", "ttyS", 0),
"logitechcc": (N_("Logitech"), N_("CC Series (serial)"),
"logim", "MouseMan", "mman", "ttyS", 0),
"logimman": (N_("Logitech"), N_("MouseMan/FirstMouse (serial)"),
"MouseMan", "MouseMan", "mman", "ttyS", 0),
"logimman+": (N_("Logitech"), N_("MouseMan+/FirstMouse+ (serial)"),
"pnp", "IntelliMouse", "ms3", "ttyS", 0),
"microsoft": (N_("Microsoft"), N_("Compatible Mouse (serial)"),
"Microsoft", "Microsoft", "bare", "ttyS", 1),
"msnew": (N_("Microsoft"), N_("Rev 2.1A or higher (serial)"),
"pnp", "Auto", "ms", "ttyS", 1),
"msintelli": (N_("Microsoft"), N_("IntelliMouse (serial)"),
"ms3", "IntelliMouse", "ms3", "ttyS", 0),
"mousesystems": (N_("Mouse Systems"), N_("Mouse (serial)"),
"MouseSystems", "MouseSystems", "msc", "ttyS", 1),
"mmseries": (N_("MM"), N_("MM Series (serial)"),
"MMSeries", "MMSeries", "bare", "ttyS", 1),
"mmhittab": (N_("MM"), N_("MM HitTablet (serial)"),
"MMHitTab", "MMHittab", "bare", "ttyS", 1),
"none": ("No", "mouse" , "none", "none", None, None, 0),
"sun": (N_("Sun"), N_("Mouse"), "sun", "sun", "sun", "sunmouse", 0),
"synaptics": (N_("Synaptics"), N_("Synaptics Touchpad"),
"imps2", "IMPS/2", None, "input/mice", 1)
[/code:1] |
|