Welcome to Soft32 Linux Forums!
FAQFAQ    SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

xorg-server 1.5 lost keyboard and mouse

 
   Soft32 Home -> Linux -> General Discussions RSS
Next:  [PATCH 01/13] x86: move x86_quirk_pre_intr_init()..  
Author Message
AZ Nomad

External


Since: Nov 03, 2008
Posts: 51



(Msg. 1) Posted: Tue Apr 07, 2009 11:44 am
Post subject: xorg-server 1.5 lost keyboard and mouse
Archived from groups: alt>os>linux>gentoo (more info?)

I allowed portage to upgrade my system to xorg-server 1.5 and now I
have lost all input.

I did some googling, but things are still not working right.
xorg's log file says it is now using evdev for input. It seems to be
ignoring my old serverlayout.


Two things broken with evdev:
1) hal didn't find keyboard or mouse
/etc/hal/fdi/policy is empty
I copied /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi
to /etc/hal/fdi/policty

2) xorg can't find evdev driver. WTF do I have an xorg server
that insists on using evdev yet doesn't include it? I couldn't find a
use flag to control wether evdev is built.
from the tail of /var/log/X*0.log:
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(II) LoadModule: "evdev"

(WW) Warning, couldn't open module evdev
(II) UnloadModule: "evdev"
(EE) Failed to load module "evdev" (module does not exist, 0)
(EE) No input driver matching evdev'
(EE) config/hal: NewInputDeviceRequest failed
Back to top
Login to vote
Nikos Chantziaras

External


Since: Nov 11, 2006
Posts: 263



(Msg. 2) Posted: Tue Apr 07, 2009 1:20 pm
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

AZ Nomad wrote:
> I allowed portage to upgrade my system to xorg-server 1.5 and now I
> have lost all input.
>
> I did some googling, but things are still not working right.
> xorg's log file says it is now using evdev for input. It seems to be
> ignoring my old serverlayout.
>
>
> Two things broken with evdev:
> 1) hal didn't find keyboard or mouse
> /etc/hal/fdi/policy is empty
> I copied /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi
> to /etc/hal/fdi/policty
>
> 2) xorg can't find evdev driver. WTF do I have an xorg server
> that insists on using evdev yet doesn't include it? I couldn't find a
> use flag to control wether evdev is built.
> from the tail of /var/log/X*0.log:
> (II) config/hal: Adding input device AT Translated Set 2 keyboard
> (II) LoadModule: "evdev"
>
> (WW) Warning, couldn't open module evdev
> (II) UnloadModule: "evdev"
> (EE) Failed to load module "evdev" (module does not exist, 0)
> (EE) No input driver matching evdev'
> (EE) config/hal: NewInputDeviceRequest failed
>

Evdev needs two things: 1) kernel support (Input device support ---> <*>
Event interface) and 2) the x11-drivers/xf86-input-evdev package installed.

Also, using HAL for this is purely optional. I'm not using it and
continue to manually specify mouse and keyboard settings in xorg.conf.
My setup is the following (you might want to adjust or ignore some of
the settings; the crucial part here is the "AutoAddDevices" "false"
option which disables HAL for keyboard and mouse):

Section "ServerFlags"
Option "AutoAddDevices" "false"
EndSection

Section "InputDevice"
Identifier "Keyboard1"
Driver "kbd"
Option "AutoRepeat" "250 30"
Option "XkbRules" "xorg"
Option "XkbModel" "microsoftinet"
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "evdev"
Option "Protocol" "auto"
Option "Device" "/dev/input/event4"
Option "AccelerationProfile" "2"
Option "AdaptiveDeceleration" "2"
Option "FilterHalflife" "5"
Option "VelocityCoupling" "0.15"
Option "FilterChainLength" "8"
EndSection

Section "ServerLayout"
# ...
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Back to top
Login to vote
Arthur Hagen

External


Since: Oct 08, 2005
Posts: 23



(Msg. 3) Posted: Tue Apr 07, 2009 1:20 pm
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

AZ Nomad <aznomad.3 RemoveThis @PremoveOBthisOX.COM> wrote:
>
> 2) xorg can't find evdev driver. WTF do I have an xorg server
> that insists on using evdev yet doesn't include it?

1: It doesn't insist on it, it only insists on it if you pass "hal" as a
USE flag when building xorg-server.
2: It's a kernel module, so it can't include it.

Anyhow, this is explained in the notes that "emerge --sync" tells you to
read before upgrading Xorg to 1.5, on the pain of otherwise your system stop
working, you house burning down, your kitten being eaten, and your sister
dating P. Diddy.

If you missed it, try "eselect news read all". It will lead you to the
upgrade guide.

Regards,
--
*Art
Back to top
Login to vote
AZ Nomad

External


Since: Nov 03, 2008
Posts: 51



(Msg. 4) Posted: Tue Apr 07, 2009 1:20 pm
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Tue, 7 Apr 2009 13:34:06 -0400, Arthur Hagen <art RemoveThis @broomstick.com> wrote:
>AZ Nomad <aznomad.3 RemoveThis @PremoveOBthisOX.COM> wrote:
>>
>> 2) xorg can't find evdev driver. WTF do I have an xorg server
>> that insists on using evdev yet doesn't include it?

>1: It doesn't insist on it, it only insists on it if you pass "hal" as a
>USE flag when building xorg-server.
>2: It's a kernel module, so it can't include it.

>Anyhow, this is explained in the notes that "emerge --sync" tells you to
>read before upgrading Xorg to 1.5, on the pain of otherwise your system stop
>working, you house burning down, your kitten being eaten, and your sister
>dating P. Diddy.

>If you missed it, try "eselect news read all". It will lead you to the
>upgrade guide.

>Regards,

I read the news and followed the link. It didn't help. It said
nothing about hal devices missing.

BTW: I have the kernel module already. xorg doesn't load kernel
modules and it's own evdev module is missing.
Back to top
Login to vote
blaszki

External


Since: Apr 07, 2009
Posts: 1



(Msg. 5) Posted: Tue Apr 07, 2009 5:20 pm
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

AZ Nomad pisze:
> I allowed portage to upgrade my system to xorg-server 1.5 and now I
> have lost all input.
>
> I did some googling, but things are still not working right.
> xorg's log file says it is now using evdev for input. It seems to be
> ignoring my old serverlayout.
>
>
> Two things broken with evdev:
> 1) hal didn't find keyboard or mouse
> /etc/hal/fdi/policy is empty
> I copied /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi
> to /etc/hal/fdi/policty
>
> 2) xorg can't find evdev driver. WTF do I have an xorg server
> that insists on using evdev yet doesn't include it? I couldn't find a
> use flag to control wether evdev is built.
> from the tail of /var/log/X*0.log:
> (II) config/hal: Adding input device AT Translated Set 2 keyboard
> (II) LoadModule: "evdev"
>
> (WW) Warning, couldn't open module evdev
> (II) UnloadModule: "evdev"
> (EE) Failed to load module "evdev" (module does not exist, 0)
> (EE) No input driver matching evdev'
> (EE) config/hal: NewInputDeviceRequest failed
>
xorg.conf:

Section "ServerFlags"
Option "AllowEmptyInput" "False"
Endsection
Back to top
Login to vote
AZ Nomad

External


Since: Nov 03, 2008
Posts: 51



(Msg. 6) Posted: Tue Apr 07, 2009 7:48 pm
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Tue, 07 Apr 2009 20:04:17 +0300, Nikos Chantziaras <realnc DeleteThis @arcor.de> wrote:

>Evdev needs two things: 1) kernel support (Input device support ---> <*>
>Event interface) and 2) the x11-drivers/xf86-input-evdev package installed.

emerging xf86-input-evdev did the trick. thanks.
Back to top
Login to vote
Gene Poole

External


Since: Apr 08, 2009
Posts: 2



(Msg. 7) Posted: Wed Apr 08, 2009 9:43 am
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Nikos Chantziaras wrote:
> AZ Nomad wrote:
>> I allowed portage to upgrade my system to xorg-server 1.5 and now I
>> have lost all input.
>>
>> I did some googling, but things are still not working right.
>> xorg's log file says it is now using evdev for input. It seems to be
>> ignoring my old serverlayout.
>>
>>
>> Two things broken with evdev:
>> 1) hal didn't find keyboard or mouse
>> /etc/hal/fdi/policy is empty
>> I copied /usr/share/hal/fdi/policy/10osvendor/10-x11-input.fdi
>> to /etc/hal/fdi/policty
>>
>> 2) xorg can't find evdev driver. WTF do I have an xorg server
>> that insists on using evdev yet doesn't include it? I couldn't find a
>> use flag to control wether evdev is built.
>> from the tail of /var/log/X*0.log:
>> (II) config/hal: Adding input device AT Translated Set 2 keyboard
>> (II) LoadModule: "evdev"
>> (WW) Warning, couldn't open module evdev
>> (II) UnloadModule: "evdev"
>> (EE) Failed to load module "evdev" (module does not exist, 0)
>> (EE) No input driver matching evdev'
>> (EE) config/hal: NewInputDeviceRequest failed
>>
>
> Evdev needs two things: 1) kernel support (Input device support ---> <*>
> Event interface) and 2) the x11-drivers/xf86-input-evdev package installed.
>
> Also, using HAL for this is purely optional. I'm not using it and
> continue to manually specify mouse and keyboard settings in xorg.conf.
> My setup is the following (you might want to adjust or ignore some of
> the settings; the crucial part here is the "AutoAddDevices" "false"
> option which disables HAL for keyboard and mouse):
>
> Section "ServerFlags"
> Option "AutoAddDevices" "false"
> EndSection
>
> Section "InputDevice"
> Identifier "Keyboard1"
> Driver "kbd"
> Option "AutoRepeat" "250 30"
> Option "XkbRules" "xorg"
> Option "XkbModel" "microsoftinet"
> EndSection
>
> Section "InputDevice"
> Identifier "Mouse1"
> Driver "evdev"
> Option "Protocol" "auto"
> Option "Device" "/dev/input/event4"
> Option "AccelerationProfile" "2"
> Option "AdaptiveDeceleration" "2"
> Option "FilterHalflife" "5"
> Option "VelocityCoupling" "0.15"
> Option "FilterChainLength" "8"
> EndSection
>
> Section "ServerLayout"
> # ...
> InputDevice "Mouse1" "CorePointer"
> InputDevice "Keyboard1" "CoreKeyboard"
> EndSection

Thanks for the input. That worked for me too (using event3 though).

I don't get the nVidia logo anymore. I did re-emerge nvidia-drivers,
but still no logo. How can I be sure I'm still using the nVidis driver?
Back to top
Login to vote
AZ Nomad

External


Since: Nov 03, 2008
Posts: 51



(Msg. 8) Posted: Wed Apr 08, 2009 11:02 am
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 08 Apr 2009 09:43:48 -0500, Gene Poole <gene.poole RemoveThis @remove.hoxnet.com> wrote:

>Thanks for the input. That worked for me too (using event3 though).

>I don't get the nVidia logo anymore. I did re-emerge nvidia-drivers,
>but still no logo. How can I be sure I'm still using the nVidis driver?

$ grep -i module /var/log/X*0.log | grep -i nvidia
(II) Module glx: vendor="NVIDIA Corporation"
(II) NVIDIA GLX Module 177.82 Tue Nov 4 17:15:47 PST 2008
(II) LoadModule: "nvidia"
(II) Loading /usr/lib64/xorg/modules/drivers//nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"

[this is on a gentoo desktop system actually; my ubuntu laptop
doesn't have nvidia video. should be the same]
Back to top
Login to vote
Gene Poole

External


Since: Apr 08, 2009
Posts: 2



(Msg. 9) Posted: Thu Apr 09, 2009 11:10 pm
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

AZ Nomad wrote:
> On Wed, 08 Apr 2009 09:43:48 -0500, Gene Poole <gene.poole.DeleteThis@remove.hoxnet.com> wrote:
>
>> Thanks for the input. That worked for me too (using event3 though).
>
>> I don't get the nVidia logo anymore. I did re-emerge nvidia-drivers,
>> but still no logo. How can I be sure I'm still using the nVidis driver?
>
> $ grep -i module /var/log/X*0.log | grep -i nvidia
> (II) Module glx: vendor="NVIDIA Corporation"
> (II) NVIDIA GLX Module 177.82 Tue Nov 4 17:15:47 PST 2008
> (II) LoadModule: "nvidia"
> (II) Loading /usr/lib64/xorg/modules/drivers//nvidia_drv.so
> (II) Module nvidia: vendor="NVIDIA Corporation"
>
> [this is on a gentoo desktop system actually; my ubuntu laptop
> doesn't have nvidia video. should be the same]

OK, So it looks like nVidia is alive and well. So why did the logo
disappear? Can I get it back (I kinda like it)?
Back to top
Login to vote
AZ Nomad

External


Since: Nov 03, 2008
Posts: 51



(Msg. 10) Posted: Fri Apr 10, 2009 12:48 am
Post subject: Re: xorg-server 1.5 lost keyboard and mouse [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Thu, 09 Apr 2009 23:10:31 -0500, Gene Poole <gene.poole.DeleteThis@remove.hoxnet.com> wrote:
>AZ Nomad wrote:
>> On Wed, 08 Apr 2009 09:43:48 -0500, Gene Poole <gene.poole.DeleteThis@remove.hoxnet.com> wrote:
>>
>>> Thanks for the input. That worked for me too (using event3 though).
>>
>>> I don't get the nVidia logo anymore. I did re-emerge nvidia-drivers,
>>> but still no logo. How can I be sure I'm still using the nVidis driver?
>>
>> $ grep -i module /var/log/X*0.log | grep -i nvidia
>> (II) Module glx: vendor="NVIDIA Corporation"
>> (II) NVIDIA GLX Module 177.82 Tue Nov 4 17:15:47 PST 2008
>> (II) LoadModule: "nvidia"
>> (II) Loading /usr/lib64/xorg/modules/drivers//nvidia_drv.so
>> (II) Module nvidia: vendor="NVIDIA Corporation"
>>
>> [this is on a gentoo desktop system actually; my ubuntu laptop
>> doesn't have nvidia video. should be the same]

>OK, So it looks like nVidia is alive and well. So why did the logo
>disappear? Can I get it back (I kinda like it)?

file:///usr/share/doc/nvidia-drivers-177.82/html/appendix-b.html

The following driver options are supported by the NVIDIA X driver. They may be specified either in the Screen or Device sections of the X config file.

X Config Options
....

Option "NoLogo" "boolean"
Disable drawing of the NVIDIA logo splash screen at X startup. Default: the logo is drawn for screens with depth 24.
Back to top
Login to vote
Display posts from previous:   
Related Topics:
X Font nightmare - The other day I rebooted after eighteen days, and every X font on my system went nuts. Now it's an adventure to see wha...

RH 9.1 Lost Keyboard and Mouse Control - Hi, I installed 9.1 a couple of weeks ago. During the install the mouse would only move in a horizontal line across..

FC3 self-compiled kernel - lost mouse?! - Folks, I've got a *weird* problem. Got/installed stock FC3-2.6.11-1.14smp kernel, it works fine. Changed a few..

Keyboard/Mouse Lockup - I'm running FC2 on a AMD 64 bit processor. The problem I have is the keyboard & mouse lose connection to the syste...

keyboard and mouse lock up - My keyboard and mouse appear to become disconnected from the computer. When it happens the caps lock led and another le...

9.0 Removes Mouse & Keyboard on boot - Okay, I'll try this again. When I first posted, I'd not yet gotten far enough to discover that RedHat removes both my...
       Soft32 Home -> Linux -> General Discussions All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

Categories:
 Windows
  Linux
 Mac
 PDA


[ Contact us | Terms of Service/Privacy Policy ]