Date: Thu, 24 Oct 2002 10:13:49 -0400 (EDT) From: John Bleichert <syborg@stny.rr.com> To: leegold <leegold@fastmail.fm> Cc: freebsd-questions@FreeBSD.ORG Subject: Re: X will not start as root - need help Message-ID: <Pine.LNX.4.44.0210240851460.21359-100000@janeway.vonbek.dhs.org> In-Reply-To: <20021024010752.5D630EA99@server2.fastmail.fm>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, 24 Oct 2002, leegold wrote:
> Date: Thu, 24 Oct 2002 01:07:52 UT
> From: leegold <leegold@fastmail.fm>
> 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: <PS/2 Mouse> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.LNX.4.44.0210240851460.21359-100000>
