Re: LTSP: No mouse wheel with USB (solved)

2007-01-12 Thread Xavier Oswald
On 08:13 Fri 12 Jan , RalfGesellensetter wrote:
 Hi Uwe,
 
 thank you, ...
 
 Am Donnerstag 11 Januar 2007 12:27 schrieb Uwe Döbereiner:
  Hello, this works for me, since a long time ago:
 
  Section InputDevice
          Identifier      Configured Mouse
          Driver          mouse
          Option          CorePointer
          Option          Device                /dev/input/mice
          Option          Protocol              ImPS/2
  #       Option          Protocol              PS/2
  #       Option          Emulate3Buttons       true
          Option          Emulate3Buttons       false
          Option          ZAxisMapping          4 5
  EndSection
 
 I found some documentation from Klaus Ade. Accordingly I added
 
 [ltsp001]
 # Test USBmouse with wheel:
 
 X_MOUSE_PROTOCOL  = imps/2
 X_MOUSE_DEVICE= /dev/input/mice
 RCFILE_01   = usbdev
 
 which seems to be working. usbdev refers to a file that looks like this:
 $ cat /opt/ltsp/i386/etc/rc.d/usbdev

To find wich device is the good one, you can use cat /dev/input/mice or 
cat /dev/psaux and then try some click and wheel. If some strange characters 
appear, you will see if it works ;)

friendly,
-- 
  ,''`.  Xavier Oswald [EMAIL PROTECTED]
 : :' :  GNU/LINUX Debian  Debian-Edu 
 `. `'   GnuPG Key ID 0x88BBB51E 
   `-938D D715 6915 8860 9679  4A0C A430 C6AA 88BB B51E


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: LTSP: No mouse wheel with USB (solved)

2007-01-11 Thread RalfGesellensetter
Hi Uwe,

thank you, ...

Am Donnerstag 11 Januar 2007 12:27 schrieb Uwe Döbereiner:
 Hello, this works for me, since a long time ago:

 Section InputDevice
         Identifier      Configured Mouse
         Driver          mouse
         Option          CorePointer
         Option          Device                /dev/input/mice
         Option          Protocol              ImPS/2
 #       Option          Protocol              PS/2
 #       Option          Emulate3Buttons       true
         Option          Emulate3Buttons       false
         Option          ZAxisMapping          4 5
 EndSection

I found some documentation from Klaus Ade. Accordingly I added

[ltsp001]
# Test USBmouse with wheel:

X_MOUSE_PROTOCOL  = imps/2
X_MOUSE_DEVICE= /dev/input/mice
RCFILE_01   = usbdev

which seems to be working. usbdev refers to a file that looks like this:
$ cat /opt/ltsp/i386/etc/rc.d/usbdev

#!/bin/sh
echo USB Mouse Support...
insmod usbcore
insmod usb-uhci
insmod input
insmod mousedev
insmod usbmouse
echo USB Keyboard Support...
insmod keybdev
insmod usbkbd

# script created according to klaus-ade at
# http://www.skolelinux.no/~klaus/newnotater/x2220.html