You are not logged in.

#1 2011-08-08 11:47:31

Doctor Drive
Member
From: Ukraine
Registered: 2010-08-11
Posts: 167
Website

[Solved] Some Xorg.0.log warnings

What do those mean and what can I do to make it better?

1)

(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)

2)

(WW) Falling back to old probe method for vesa

3)

(WW) Falling back to old probe method for fbdev

Last edited by Doctor Drive (2011-08-08 13:01:30)

Offline

#2 2011-08-08 11:54:42

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [Solved] Some Xorg.0.log warnings

They're harmless. IIRC you need to install acpi, xf86-video-vesa and xf86-video-fbdev to get rid of them.

Last edited by karol (2011-08-08 11:55:26)

Offline

#3 2011-08-08 12:10:16

Doctor Drive
Member
From: Ukraine
Registered: 2010-08-11
Posts: 167
Website

Re: [Solved] Some Xorg.0.log warnings

karol wrote:

They're harmless.

I know that, I just want to improve.


karol wrote:

xf86-video-vesa and xf86-video-fbdev to get rid of them.

I know they aren't necessary. But if I get rid of them I get errors.  Not nice too.

(II) LoadModule: "vesa"
(WW) Warning, couldn't open module vesa
(II) UnloadModule: "vesa"
(II) Unloading vesa
(EE) Failed to load module "vesa" (module does not exist, 0)
(II) LoadModule: "fbdev"
(WW) Warning, couldn't open module fbdev
(II) UnloadModule: "fbdev"
(II) Unloading fbdev
(EE) Failed to load module "fbdev" (module does not exist, 0)

Last edited by Doctor Drive (2011-08-08 12:10:56)

Offline

#4 2011-08-08 12:20:48

lolilolicon
Member
Registered: 2009-03-05
Posts: 1,722

Re: [Solved] Some Xorg.0.log warnings

karol said you need to install them in order to get rid of the warnings.

I think the warnings may be done away by writing a xorg.conf, but I'm not sure and I don't think it worth it.

Last edited by lolilolicon (2011-08-08 12:21:26)


This silver ladybug at line 28...

Offline

#5 2011-08-08 12:30:27

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [Solved] Some Xorg.0.log warnings

Seems I remembered wrong. You had to install those packages to get rid of the '(EE) Failed to load module "fbdev" (module does not exist, 0)' errors.

What config files for xorg are you using? Can you post them?

Offline

#6 2011-08-08 12:35:37

Doctor Drive
Member
From: Ukraine
Registered: 2010-08-11
Posts: 167
Website

Re: [Solved] Some Xorg.0.log warnings

lolilolicon wrote:

karol said you need to install them in order to get rid of the warnings.

Sorry. Misunderstanding.

karol wrote:

What config files for xorg are you using? Can you post them?

$ cat /etc/X11/xorg.conf.d/*
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

#Section "InputClass"
#        Identifier "evdev touchpad catchall"
#        MatchIsTouchpad "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

#Section "InputClass"
#        Identifier "evdev tablet catchall"
#        MatchIsTablet "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection

#Section "InputClass"
#        Identifier "evdev touchscreen catchall"
#        MatchIsTouchscreen "on"
#        MatchDevicePath "/dev/input/event*"
#        Driver "evdev"
#EndSection
# Collection of quirks and blacklist/whitelists for specific devices.


# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
# http://bugs.freedesktop.org/show_bug.cgi?id=22442 
Section "InputClass"
        Identifier "ThinkPad HDAPS accelerometer blacklist"
        MatchProduct "ThinkPad HDAPS accelerometer data"
        Option "Ignore" "on"
EndSection
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
            Option "TapButton1" "1"
            Option "TapButton2" "2"
            Option "TapButton3" "3"
            Option "SHMConfig"  "1"
EndSection

Offline

#7 2011-08-08 12:37:52

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [Solved] Some Xorg.0.log warnings

Offline

#8 2011-08-08 13:01:15

Doctor Drive
Member
From: Ukraine
Registered: 2010-08-11
Posts: 167
Website

Re: [Solved] Some Xorg.0.log warnings

Thanks karol, that explains it all.

Offline

Board footer

Powered by FluxBB