From owner-freebsd-questions@FreeBSD.ORG Sat Aug 16 21:50:57 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 3891737B401 for ; Sat, 16 Aug 2003 21:50:57 -0700 (PDT) Received: from smtp4.adl2.internode.on.net (smtp4.adl2.internode.on.net [203.16.214.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D46B43FA3 for ; Sat, 16 Aug 2003 21:50:56 -0700 (PDT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp54-14.lns1.adl2.internode.on.net [150.101.54.14]) h7H4ordb042489; Sun, 17 Aug 2003 14:20:54 +0930 (CST) Content-Type: text/plain; charset="koi8-r" From: Malcolm Kay Organization: At home To: "Denis" , Date: Sun, 17 Aug 2003 14:20:53 +0930 User-Agent: KMail/1.4.3 References: <002201c363f8$e53bb300$43245250@comp> In-Reply-To: <002201c363f8$e53bb300$43245250@comp> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200308171420.53045.malcolm.kay@internode.on.net> Subject: Re: how to use 4 buttons 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: Sun, 17 Aug 2003 04:50:57 -0000 On Sat, 16 Aug 2003 22:44, Denis wrote: > Hi all!!! > > Does anybody know how i can use in freebsd mouse with 4 buttons? > Maybe i must do some changes in configuration files or ...??? I don't > know....... What sort of mouse?=20 Console or X? Assuming you have a ps/2 mouse then make sure you are running 'moused'. Adding: moused_enable=3D"YES" moused_port=3D"/dev/psm0" moused_type=3D"auto" to /etc/rc.conf should accomplish this on start up. Now, to have X recognise the 4th button you'll need: Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "Buttons" "4" in the options section of XF86Config. You may need to add actions to X application resource files to get any effect from the 4th button. If it is not a ps/2 mouse take a look at: man moused and the README.mouse file in the X documentation. Malcolm