USB and redhat 7.2 and eth0/1
    Eric Eisenhart 
    eric at eisenhart.com
       
    Fri Oct 26 18:21:37 PDT 2001
    
    
  
On Fri, Oct 26, 2001 at 10:58:49AM -0700, Troy Engel wrote:
> > Thanks!
> > But the strangest thing happened:
> > When I rebooted I was able to use the usb mouse, but my trackpad was dead.
> > Can i have both installed correctly?
> > Do I need to update my xf86 config file to have them both? What file is
> > that?
Try editing /etc/X11/XF86Config-4  First, back it up, though.
Look for "mouse".  You'll have a single section somewhat like one of these;
you need to put both in.  One needs to be "CorePointer", the other needs the
"SendCoreEvents" option on.  If you don't have a scroll-wheel you can ignore
the ZAxisMapping line.
Section "InputDevice"
        Identifier      "Configured Mouse"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Device"                "/dev/psaux"
        Option          "Protocol"              "PS/2"
        Option          "Emulate3Buttons"       "true"
        Option          "ZAxisMapping"          "4 5"
EndSection
Section "InputDevice"
        Identifier      "Generic Mouse"
        Driver          "mouse"
        Option          "SendCoreEvents"        "true"
        Option          "Device"                "/dev/input/mice"
        Option          "Protocol"              "ImPS/2"
        Option          "Emulate3Buttons"       "true"
        Option          "ZAxisMapping"          "4 5"
EndSection
Somewhere further down in the file, you'll probably have a ServerLayout
section that might look like this:
Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Generic Keyboard"
        InputDevice     "Configured Mouse"
        InputDevice     "Generic Mouse"
EndSection
For the new mouse you added, make sure that there's a new entry for
"InputDevice" in the "ServerLayout" section like I show above.
You can give your two mice whatever name you want; you just need to make
sure you're consistent in these two locations.
-- 
    Eric Eisenhart   Freedom is slavery.      http://eric.eisenhart.com/
 ^  ICQ#: 48217244   Ignorance is strength.   eric-dot-sig at eisenhart.com
/e\ Perl&SQL Coder   War is peace.            IRC Nicks: Falsch Freiheit
---                        -- George Orwell
    
    
More information about the talk
mailing list