Re: PS/2 mouse setup; /dev/mouse?

1998-01-11 Thread Heikki Vatiainen
Since it is a PS/2 mouse, the Pointer section in XF86Config should probably 
look something like this:

Section "Pointer"
   Protocol"PS/2"
   Device  "/dev/psaux"
EndSection

// Heikki
-- 
Heikki Vatiainen  * [EMAIL PROTECTED]
Tampere University of Technology  * Tampere, Finland


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-11 Thread Will Lowe
On Sun, 11 Jan 1998, Gregory Guthrie wrote:

> The XF86 config file points to /dev/mouse, which is a link to a serial
> port, but, my mouse is not on S0/S1.
the correct PS/2 mouse port is /dev/psaux.

> How should /dev/mouse be setup for this, in windows it is a separate port
> at IRQ 12.
use /dev/psaux and it'll be taken care of automatically.  You might do

rm /dev/mouse
ln -s /dev/psax /dev/mouse

to make a new /dev/mouse link that points to /dev/psaux,  and then use
/dev/mouse instead of /dev/psaux.  That way if for some reason you ever
need to use a serial mouse,  you can just change the link rather than
reconfiguring every piece of software that uses the mouse.

Will


--
| [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]   |
|   http://www.cis.udel.edu/~lowe/   |
--
|If at first you don't succeed,  redefine success.   |
|   -- Taken from Hennesey and Patterson,|
| _Computer_Organization_And_Design_:_The_Hardware_/_Software_Interface_ |
--


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-11 Thread Carl Mummert


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-11 Thread Carl Mummert
I have GPM set up like so:

/etc/gpm.conf:

device=/dev/psaux
responsiveness=
type=ps2
append="-R"

And X like so:

/etc/X11/XF86Config:

Section "Pointer"
Protocol"MouseSystems"
Device  "/dev/gpmdata"


So that X will read the mouse data that GPM leaves in a fifo /dev/gpmdata.

I apologize if I sent an empty message before this one.

Carl

[EMAIL PROTECTED]
  
The sun's not eternal
   That's why there's the blues...
 -- Ginsburg


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-12 Thread Jean Pierre LeJacq
On Sun, 11 Jan 1998, Gregory Guthrie wrote:

> I have a Microsoft PS/2 mouse, with a seperate port, not one of my serial
> ports.

I use the following in my /etc/X11/XF8gConfig:

  Section "Pointer"
Protocol  "PS/2"
Device"/dev/psaux"
Emulate3Buttons
  EndSection

-- 
Jean Pierre


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-16 Thread William R Ward
Will Lowe <[EMAIL PROTECTED]> writes:
> On Sun, 11 Jan 1998, Gregory Guthrie wrote:
> > The XF86 config file points to /dev/mouse, which is a link to a serial
> > port, but, my mouse is not on S0/S1.
> the correct PS/2 mouse port is /dev/psaux.
> 
> > How should /dev/mouse be setup for this, in windows it is a separate port
> > at IRQ 12.
> use /dev/psaux and it'll be taken care of automatically.  You might do
> 
> rm /dev/mouse
> ln -s /dev/psax /dev/mouse
> 
> to make a new /dev/mouse link that points to /dev/psaux,  and then use
> /dev/mouse instead of /dev/psaux.  That way if for some reason you ever
> need to use a serial mouse,  you can just change the link rather than
> reconfiguring every piece of software that uses the mouse.

My system has a /dev/psmouse that is the same device as /dev/psaux as
far as I can tell...

I have a PS/2 port on the motherboard (it's an Intel TX chipset board)
and I tried hooking my Logitech trackball to it but it managed to make
the computer very upset -- the keyboard locked up!  Also when I tried
to start X without the mouse plugged in - but with it configured to
use /dev/psmouse - it wouldn't start.  Both times I had to log in over
the ethernet and fix the problem by rebooting (keyboard lockup) or
killing the X processes (mouse problem).

Anyone get this to work?  I'd like to be able to hook up a terminal to
the serial port that i've been using for mouse.

--Bill.

-- 
William R Ward  Bay View Consulting   http://www.bayview.com/~hermit/
[EMAIL PROTECTED] 1803 Mission St. #339voicemail +1 408/479-4072
[EMAIL PROTECTED]   Santa Cruz CA 95060 USA   pager +1 408/458-8862
 PGP Key 0x2BD331E5; Public key at http://www.bayview.com/~hermit/pubkey.txt


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-17 Thread Pancho Horrillo

On 16 Jan 1998, William R Ward wrote:

> Will Lowe <[EMAIL PROTECTED]> writes:
> > On Sun, 11 Jan 1998, Gregory Guthrie wrote:
> > > The XF86 config file points to /dev/mouse, which is a link to a serial
> > > port, but, my mouse is not on S0/S1.
> > the correct PS/2 mouse port is /dev/psaux.
> > 
> > > How should /dev/mouse be setup for this, in windows it is a separate port
> > > at IRQ 12.
> > use /dev/psaux and it'll be taken care of automatically.  You might do
> > 
> > rm /dev/mouse
> > ln -s /dev/psax /dev/mouse
> > 
> > to make a new /dev/mouse link that points to /dev/psaux,  and then use
> > /dev/mouse instead of /dev/psaux.  That way if for some reason you ever
> > need to use a serial mouse,  you can just change the link rather than
> > reconfiguring every piece of software that uses the mouse.
> 
> My system has a /dev/psmouse that is the same device as /dev/psaux as
> far as I can tell...
> 
> I have a PS/2 port on the motherboard (it's an Intel TX chipset board)
> and I tried hooking my Logitech trackball to it but it managed to make
> the computer very upset -- the keyboard locked up!  Also when I tried
> to start X without the mouse plugged in - but with it configured to
> use /dev/psmouse - it wouldn't start.  Both times I had to log in over
> the ethernet and fix the problem by rebooting (keyboard lockup) or
> killing the X processes (mouse problem).
> 
> Anyone get this to work?  I'd like to be able to hook up a terminal to
> the serial port that i've been using for mouse.
> 
> --Bill.
> 
> -- 
> William R Ward  Bay View Consulting   http://www.bayview.com/~hermit/
> [EMAIL PROTECTED] 1803 Mission St. #339voicemail +1 408/479-4072
> [EMAIL PROTECTED]   Santa Cruz CA 95060 USA   pager +1 
> 408/458-8862
>  PGP Key 0x2BD331E5; Public key at http://www.bayview.com/~hermit/pubkey.txt
> 
> 
> --
> TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
> [EMAIL PROTECTED] . 
> Trouble?  e-mail to [EMAIL PROTECTED] .
> 
> 
> 
I have a Logitech Marble, attached to PS/2 port in a Gigabyte
GA-586 ATX w/ i430 TX chipset, working nicely w/ Debian 1.3.1. No
/dev/psmouse, just psaux. Try gpm on /dev/psaux and w/ ps2 mouse protocol
selected.

Have you installed ps/2 support in kernel?

Once you get it work, perhaps you might want to speed it up the
trackball. With gpm i use a responsiveness of 30, and with X, xset m 6 3.
I have to thank people in debian-user for the last set (it was my first
post to this list :.)

I have read somewhere that it's not adviseable the use of symlinks
to devices such as modems or mouse ports, due locking conflicts. If a
process uses and locks /dev/ttyS0, and you have a symlink modem->ttyS0 and
try to use it, as far as i know, the locking name will be different, so it
can conflict .

Have fun!

--
Pancho Horrillo
[EMAIL PROTECTED]




--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-17 Thread Pancho Horrillo
On 16 Jan 1998, William R Ward wrote:

> Will Lowe <[EMAIL PROTECTED]> writes:
> > On Sun, 11 Jan 1998, Gregory Guthrie wrote:
> > > The XF86 config file points to /dev/mouse, which is a link to a serial
> > > port, but, my mouse is not on S0/S1.
> > the correct PS/2 mouse port is /dev/psaux.
> > 
> > > How should /dev/mouse be setup for this, in windows it is a separate port
> > > at IRQ 12.
> > use /dev/psaux and it'll be taken care of automatically.  You might do
> > 
> > rm /dev/mouse
> > ln -s /dev/psax /dev/mouse
> > 
> > to make a new /dev/mouse link that points to /dev/psaux,  and then use
> > /dev/mouse instead of /dev/psaux.  That way if for some reason you ever
> > need to use a serial mouse,  you can just change the link rather than
> > reconfiguring every piece of software that uses the mouse.
> 
> My system has a /dev/psmouse that is the same device as /dev/psaux as
> far as I can tell...
> 
> I have a PS/2 port on the motherboard (it's an Intel TX chipset board)
> and I tried hooking my Logitech trackball to it but it managed to make
> the computer very upset -- the keyboard locked up!  Also when I tried
> to start X without the mouse plugged in - but with it configured to
> use /dev/psmouse - it wouldn't start.  Both times I had to log in over
> the ethernet and fix the problem by rebooting (keyboard lockup) or
> killing the X processes (mouse problem).
> 
> Anyone get this to work?  I'd like to be able to hook up a terminal to
> the serial port that i've been using for mouse.
> 
> --Bill.
> 
> -- 
> William R Ward  Bay View Consulting   http://www.bayview.com/~hermit/
> [EMAIL PROTECTED] 1803 Mission St. #339voicemail +1 408/479-4072
> [EMAIL PROTECTED]   Santa Cruz CA 95060 USA   pager +1 
> 408/458-8862
>  PGP Key 0x2BD331E5; Public key at http://www.bayview.com/~hermit/pubkey.txt
> 
> 
> --
> TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
> [EMAIL PROTECTED] . 
> Trouble?  e-mail to [EMAIL PROTECTED] .
> 
> 
> 
I have a Logitech Marble, attached to PS/2 port in a Gigabyte
GA-586 ATX w/ i430 TX chipset, working nicely w/ Debian 1.3.1. No
/dev/psmouse, just psaux. Try gpm on /dev/psaux and w/ ps2 mouse protocol
selected.

Have you installed ps/2 support in kernel?

Once you get it work, perhaps you might want to speed it up the
trackball. With gpm i use a responsiveness of 30, and with X, xset m 6 3.
I have to thank people in debian-user for the last set (it was my first
post to this list :.)

I have read somewhere that it's not adviseable the use of symlinks
to devices such as modems or mouse ports, due locking conflicts. If a
process uses and locks /dev/ttyS0, and you have a symlink modem->ttyS0 and
try to use it, as far as i know, the locking name will be different, so it
can conflict .

Have fun!

--
Pancho Horrillo
[EMAIL PROTECTED]



--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: PS/2 mouse setup; /dev/mouse?

1998-01-19 Thread fpolacco
On Sat, Jan 17, 1998 at 01:21:34AM +0100, Pancho Horrillo wrote:
> 
>   I have read somewhere that it's not adviseable the use of symlinks
> to devices such as modems or mouse ports, due locking conflicts. If a
> process uses and locks /dev/ttyS0, and you have a symlink modem->ttyS0 and
> try to use it, as far as i know, the locking name will be different, so it
> can conflict .

You're right.
It is due to a too confident algoritm in the FSSTND (and from there 
used by all :-).
FYI Debian is trying to get rid of this problem by adopting a device 
locking library that is insensitive to symlinks, hardlinks and doubled 
devices, that will be used by all programs for 2.1 (some like "dip" 
even from now).

Anyway the mouse programs (gpm and X) don't lock the device as they 
can share its use. Those arguments apply more to modem lines.

Fabrizio
-- 
| [EMAIL PROTECTED][EMAIL PROTECTED][EMAIL PROTECTED]
| Pluto Leader - Debian Developer & Happy Debian 1.3.1 User - vi-holic
| 6F7267F5 fingerprint 57 16 C4 ED C9 86 40 7B 1A 69 A1 66 EC FB D2 5E
> more than 35 months are needed to get rid of the millennium. [me]
>If NT is your answer, means you didn't understand the question.[som1]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .