From owner-freebsd-questions@FreeBSD.ORG Tue Dec 16 18:02:49 2003 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 987A216A4CE for ; Tue, 16 Dec 2003 18:02:49 -0800 (PST) Received: from ms-smtp-03-eri0.southeast.rr.com (ms-smtp-03-lbl.southeast.rr.com [24.25.9.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2872243D5D for ; Tue, 16 Dec 2003 18:02:48 -0800 (PST) (envelope-from wegster@mindcore.net) Received: from mindcore.net (rdu162-234-100.nc.rr.com [24.162.234.100]) hBH22jov023589; Tue, 16 Dec 2003 21:02:45 -0500 (EST) Message-ID: <3FDFB945.3040203@mindcore.net> Date: Tue, 16 Dec 2003 21:02:45 -0500 From: Scott W User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 X-Accept-Language: en-us, en MIME-Version: 1.0 To: marcelo cardoso martinelli References: <20031216135841.62316.qmail@web41012.mail.yahoo.com> In-Reply-To: <20031216135841.62316.qmail@web41012.mail.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: Symantec AntiVirus Scan Engine cc: freebsd questions Subject: Re: usb wheel mouse 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: Wed, 17 Dec 2003 02:02:49 -0000 marcelo cardoso martinelli wrote: >i have a ms intellimouse optical usb mouse and i can't get the wheel to >work in X. > >here is my InputDevice section in XF86Config: > >"Section "InputDevice" > Identifier "IntelliMouse Explorer" > Driver "mouse" > Option "Device" "/dev/sysmouse" > Option "Protocol" "Auto" > Option "Buttons" "7" > Option "ZAxisMapping" "6 7" >EndSection" > >i am running FreeBSD-5.0 Release and XFree86 4.2.1 > >TIA >_______________________________________________ >freebsd-questions@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-questions >To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > From a freeBSD install/writeup I'm working on: The fix for the wheel involved setting an option or two: appending '-z4' to the moused command string in the "Mouse" section of /etc/usbd.conf New Line: attach "/usr/sbin/moused -p /dev/${DEVNAME} -I /var/run/moused.${DEVNAME}.pid -z4; /usr/sbin/vidcontrol -m on" and adding the following line to the InputDevice section of the XF86Config file: Option "Buttons" "6" See http://www.gsoft.com.au/~doconnor/x-wheel.html for further info or Google for 'FreeBSD X wheel mouse' for further information. This also allowed the 'wheel press' button to work as well. Scott