Re: Mouse diagnostics tools?

2007-10-15 Thread Jim Stapleton
Martin Alejandro Paredes Sanchez wrote:
 What is the output of :

 dmesg | grep -i mouse

  (B) know a tool to help diagnose this issue?

 Try the -f and -d option in moused

for the first part, it shows my wired mouse only:

[EMAIL PROTECTED] 19:48:52 (0) ~  dmesg | grep -i mouse
ums0: Logitech USB-PS/2 Optical Mouse, rev 2.00/18.00, addr 3, iclass 3/1

for the second, I guess I didn't expect it to provide /that/ much
diagnostic information. With moused -d -f -p /dev/sysmouse -t auto,
only the logictech produces output - the microsoft does not.

Given the lack of output, I take it that it is safe to assume there is
no low level driver for my mouse? Should I provide my system's
configuration file as well (from buildkernel - I know I turned off a
lot of wireless stuff in the config, but I didn't think it would
affect this).



icantthinkofone wrote:
 Don't know of any diagnostics but we would need to see your xorg.conf
 and rc.conf to help make this work.


rc.conf:

# -- sysinstall generated deltas -- # Wed Feb  7 13:21:21 2007
# Created: Wed Feb  7 13:21:21 2007
# Enable network daemons for user convenience.
# Please make all changes to this file, not to /etc/defaults/rc.conf.
# This file now contains just the overrides from /etc/defaults/rc.conf.
hostname=elrond.mydomain.net
ifconfig_nve0=inet 192.168.1.84 netmask 255.255.255.0
ifconfig_nve0_alias0=192.168.1.85 netmask 255.255.255.255
defaultrouter=192.168.1.1

usbd_enable=YES
linux_enable=YES
sshd_enable=YES
ntpdate_enable=YES
ntpd_enable=YES
cupsd_enable=YES

sendmail_enable=NONE
inetd_flags=-wW -a 192.168.1.84
syslogd_flags=-b 192.168.1.84
rpcbind_enable=NO
sb_server_enable=YES
# added by mergebase.sh
local_startup=/usr/local/etc/rc.d


xorg.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  ([EMAIL PROTECTED])  Tue Feb
6 05:44:08 UTC 2007

Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection

Section Files
RgbPath /usr/local/lib/X11/rgb
ModulePath  /usr/local/lib/xorg/modules
FontPath/usr/local/lib/X11/fonts/misc/
FontPath/usr/local/lib/X11/fonts/TTF/
FontPath/usr/local/lib/X11/fonts/Type1/
FontPath/usr/local/lib/X11/fonts/CID/
FontPath/usr/local/lib/X11/fonts/75dpi/
FontPath/usr/local/lib/X11/fonts/100dpi/
EndSection

Section Module
Load   extmod
Load   glx
Load   dbe
Load   record
Load   xtrap
Load   type1
Load   freetype
EndSection

Section InputDevice
Identifier Keyboard0
Driver kbd
EndSection

Section InputDevice
Identifier Mouse0
Driver mouse
Option Protocol auto
Option Device /dev/sysmouse
Option ZAxisMapping 4 5 6 7
EndSection

#previous attempt to get microsoft mouse working
Section InputDevice
Identifier Mouse1
Driver mouse
Option Protocol ImPS/2
Option Device /dev/sysmouse
Option ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier Monitor0
VendorName SAM
ModelName  SyncMaster
HorizSync   30.0 - 81.0
VertRefresh 56.0 - 75.0
Option DPMS
EndSection


Section Extensions
Option Composite Enable
EndSection



Section Device
Identifier Card0
Driver nvidia
VendorName nVidia Corporation
BoardName  Unknown Board
EndSection

Section Screen
Identifier Screen0
Device Card0
MonitorMonitor0
SubSection Display
Viewport0 0
Depth   24
Modes  1920x1080 1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Viewport0 0
Depth   16
Modes  1920x1080 1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Viewport0 0
Depth   15
Modes  1920x1080 1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Viewport0 0
Depth   8
Modes  1920x1080 1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Viewport0 0
Depth   4
Modes  1920x1080 1280x1024 1024x768 800x600 640x480
EndSubSection
SubSection Display
Viewport0 0
Modes  1920x1080 1280x1024 1024x768 800x600 640x480
EndSubSection
EndSection



Thanks,
-Jim Stapleton
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send 

Re: Mouse diagnostics tools?

2007-10-15 Thread Martin Alejandro Paredes Sanchez
El Lun 15 Oct 2007, Jim Stapleton escribió:
 Martin Alejandro Paredes Sanchez wrote:
  What is the output of :
 
  dmesg | grep -i mouse
 
   (B) know a tool to help diagnose this issue?
 
  Try the -f and -d option in moused

 for the first part, it shows my wired mouse only:

 [EMAIL PROTECTED] 19:48:52 (0) ~  dmesg | grep -i mouse
 ums0: Logitech USB-PS/2 Optical Mouse, rev 2.00/18.00, addr 3, iclass 3/1

This mean that the driver ums (USB mouse driver) is loaded to control your 
mouse

man ums


 for the second, I guess I didn't expect it to provide /that/ much
 diagnostic information. With moused -d -f -p /dev/sysmouse -t auto,
 only the logictech produces output - the microsoft does not.

should be

moused -d -f -p /dev/ums0 -t auto

man moused

if you see output, mean it work in FreeBSD, if the microsoft mouse doesn't 
produce a line in dmesg, mean that there is not a driver for your mouse.

I read some where about a new work in CURRENT, to make a new framework for the 
mouse.


 Given the lack of output, I take it that it is safe to assume there is
 no low level driver for my mouse? Should I provide my system's
 configuration file as well (from buildkernel - I know I turned off a
 lot of wireless stuff in the config, but I didn't think it would
 affect this).

 icantthinkofone wrote:
  Don't know of any diagnostics but we would need to see your xorg.conf
  and rc.conf to help make this work.

 rc.conf:
 
 # -- sysinstall generated deltas -- # Wed Feb  7 13:21:21 2007
 # Created: Wed Feb  7 13:21:21 2007
 # Enable network daemons for user convenience.
 # Please make all changes to this file, not to /etc/defaults/rc.conf.
 # This file now contains just the overrides from /etc/defaults/rc.conf.
 hostname=elrond.mydomain.net
 ifconfig_nve0=inet 192.168.1.84 netmask 255.255.255.0
 ifconfig_nve0_alias0=192.168.1.85 netmask 255.255.255.255
 defaultrouter=192.168.1.1

 usbd_enable=YES
 linux_enable=YES
 sshd_enable=YES
 ntpdate_enable=YES
 ntpd_enable=YES
 cupsd_enable=YES

 sendmail_enable=NONE
 inetd_flags=-wW -a 192.168.1.84
 syslogd_flags=-b 192.168.1.84
 rpcbind_enable=NO
 sb_server_enable=YES
 # added by mergebase.sh
 local_startup=/usr/local/etc/rc.d
 

I didn't see any line about moused, but that is because your mouse is USB and 
moused is loaded by devd

to see how is invoked moused

ps axw | grep mouse


 xorg.conf
 

 Section InputDevice
 Identifier Mouse0
 Driver mouse
 Option Protocol auto
 Option Device /dev/sysmouse
 Option ZAxisMapping 4 5 6 7
 EndSection

To use Device /dev/sysmouse, moused should be loaded, if not, the device 
should be /dev/ums0


 #previous attempt to get microsoft mouse working
 Section InputDevice
 Identifier Mouse1
 Driver mouse
 Option Protocol ImPS/2
 Option Device /dev/sysmouse
 Option ZAxisMapping 4 5 6 7
 EndSection

 


 Thanks,
 -Jim Stapleton

maps
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mouse diagnostics tools?

2007-10-14 Thread Martin Alejandro Paredes Sanchez
El Dom 14 Oct 2007, Jim Stapleton escribió:
 I just got a microsoft wireless optical desktop 3000 (Microsoft
 Wireless Optical Mouse 2.0), and am running in FreeBSD 6.2/Xorg 7.2

 I have tried the mouse on a Windows machine and it works fine. The
 keyboard works well on Windows and FreeBSD. The mouse, however,
 doesn't seem to be recognized.

What is the output of :

dmesg | grep -i mouse

 (B) know a tool to help diagnose this issue?

Try the -f and -d option in moused

Have you read the manual of moused (man moused)

maps
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mouse diagnostics tools?

2007-10-14 Thread icantthinkofone

Jim Stapleton wrote:

I just got a microsoft wireless optical desktop 3000 (Microsoft
Wireless Optical Mouse 2.0), and am running in FreeBSD 6.2/Xorg 7.2

I have tried the mouse on a Windows machine and it works fine. The
keyboard works well on Windows and FreeBSD. The mouse, however,
doesn't seem to be recognized. I do not see a mouse cursor on a
console, and the mouse in X doesn't react to motion, scrolling, left
or right clicking.

Anyone
(A)  know how to get one of these working in FreeBSD?
and/or
(B) know a tool to help diagnose this issue?

Web searches show that the mouse can work in LInux, but you need to
work with xmodmap to get the left click functional. There are no hits
for FreeBSD.

I've tested with an old mouse (wired) and it works fine, however in
this situation, a wired mouse  is not a solution.

Thank you,
-Jim Stapleton
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
  
Don't know of any diagnostics but we would need to see your xorg.conf 
and rc.conf to help make this work.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]