You are not logged in.
Pages: 1
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
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
They're harmless.
I know that, I just want to improve.
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
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
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
karol said you need to install them in order to get rid of the warnings.
Sorry. Misunderstanding.
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
Offline
Thanks karol, that explains it all.
Offline
Pages: 1