From owner-freebsd-questions Thu Oct 24 7:18:45 2002 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 9D00837B4AB for ; Thu, 24 Oct 2002 07:18:41 -0700 (PDT) Received: from janeway.vonbek.dhs.org (bgm-24-94-58-56.stny.rr.com [24.94.58.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4CA243E3B for ; Thu, 24 Oct 2002 07:18:37 -0700 (PDT) (envelope-from syborg@stny.rr.com) Received: by janeway.vonbek.dhs.org (Postfix, from userid 507) id 121C74FC9F; Thu, 24 Oct 2002 10:13:49 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by janeway.vonbek.dhs.org (Postfix) with ESMTP id 0CCA44A0E; Thu, 24 Oct 2002 10:13:49 -0400 (EDT) Date: Thu, 24 Oct 2002 10:13:49 -0400 (EDT) From: John Bleichert X-X-Sender: syborg@janeway.vonbek.dhs.org Reply-To: John Bleichert To: leegold Cc: freebsd-questions@FreeBSD.ORG Subject: Re: X will not start as root - need help In-Reply-To: <20021024010752.5D630EA99@server2.fastmail.fm> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 24 Oct 2002, leegold wrote: > Date: Thu, 24 Oct 2002 01:07:52 UT > From: leegold > To: freebsd-questions@FreeBSD.ORG > Subject: Re: X will not start as root - need help > > Here's my config. files - appreciate the help: > Refer to my previous posts for the error message. > > THANK YOU in advance. > > 1. > $ grep mouse /etc/rc.cont > moused_enable="YES" I never enable moused as I don't want a mouse pointer in my terminal. It's not required for X (as others have said). From your dmesg: > psm0: irq 12 on atkbdc0 > psm0: model IntelliMouse, device ID 3 > From your XF86Config: > Section "InputDevice" > Identifier "Mouse1" > Driver "mouse" > Option "Protocol" "MouseSystems" > Option "Device" "/dev/sysmouse" > Option "ClearDTR" > Option "ClearRTS" > EndSection For the Device section above, try /dev/psm0 - That's how I use it. Actually, I have one line each for USB and PS/2. Also, I think the DTR and RTS stuff is only for serial mice? Are you *sure* you selected the ps2 mouse style during xf86config? The protocol should be "PS/2". So re-write this with: Section "InputDevice" Identifier "Mouse1" Driver "mouse" Option "Protocol" "PS/2" Option "Device" "/dev/psm0" Option "ZAxisMapping" "4 5" EndSection The ZAxisMapping is for your mousewheel. You can also add or fake 3-button support here. See the comments in your XF86Config file. HTH - JB # John Bleichert # http://vonbek.dhs.org/latest.jpg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message