From owner-freebsd-questions@FreeBSD.ORG Sun Sep 26 07:45:01 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8272716A4CE for ; Sun, 26 Sep 2004 07:45:01 +0000 (GMT) Received: from conn.mc.mpls.visi.com (conn.mc.mpls.visi.com [208.42.156.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C0FA43D39 for ; Sun, 26 Sep 2004 07:45:01 +0000 (GMT) (envelope-from seahawk@visi.com) Received: from isis.visi.com (isis.visi.com [209.98.98.8]) by conn.mc.mpls.visi.com (Postfix) with ESMTP id 8809585E8; Sun, 26 Sep 2004 02:45:00 -0500 (CDT) Received: by isis.visi.com (Postfix, from userid 20347) id 5595576C5A; Sun, 26 Sep 2004 02:45:00 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by isis.visi.com (Postfix) with ESMTP id 48E5D76C58; Sun, 26 Sep 2004 02:45:00 -0500 (CDT) Date: Sun, 26 Sep 2004 02:45:00 -0500 (CDT) From: Seahawk To: David Gerard In-Reply-To: <4155E2CD.4080407@thingy.apana.org.au> Message-ID: References: <41555A2E.20800@thingy.apana.org.au> <20040925150103.48507e74.krylon@gmx.net> <4155E2CD.4080407@thingy.apana.org.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: questions@freebsd.org Subject: Re: Mouse wheel on XOrg 6.7.0 (FreeBSD 5.3-beta5) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Sep 2004 07:45:01 -0000 I've had my mousewheel running under XOrg, these are the following lines I put in the two following files rc.conf: moused_enable="YES" moused_type="auto" moused_flags="-z 4" xorg.conf: Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "Buttons" "5" EndSection I just used the instructions on the FreeBSD faq here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/x.html#X-AND-WHEEL and just used the examples for XFree86 4.x in my xorg.conf file -Chad On Sat, 25 Sep 2004, David Gerard wrote: > >>I've just installed the latest 5.3 beta with XOrg 6.7.0. > >>The mouse works, except I can't get the mouse wheel to work. > >>The mouse section of xorg.conf is as follows: > > > I recently switched to X.org without changing any of my configuration. > > My mouse section looks like this: > > Section "InputDevice" > > Identifier "Mouse0" > > Driver "mouse" > > Option "Protocol" "SysMouse" > > Option "Device" "/dev/sysmouse" > > Option "ZAxisMapping" "4 5" > > EndSection > > Works fine. I guess you have to change the protocol to SysMouse. > > Alex de Kruijff wrote: > > > This needs to go in /etc/rc.conf > > moused_flags="-a .4" > > moused_port="/dev/psm0" > > moused_type="auto" > > moused_enable="YES" > > The value afther a is a correction factor. > > > Unfortunately, neither of these suggestions work, either separately > or together! > > More detail: the mouse is a Compaq (Logitech) USB optical mouse. > I did try moused_port="/dev/ums0" as well. > > Any other ideas?