You are not logged in.

#1 2014-03-29 20:40:54

Graxin
Member
Registered: 2014-03-26
Posts: 7

[SOLVED] Trying to fix brightness apparently intel/acpi not recognized

So I've been trying to fix my brightness and xbacklight doesnt work. In sys/class/backlight both my acpi_video0 and intel_backlight arent recognized, if I try to open either one in mousepad it brings up the error:

 Failed to map /sys/class/backlight/acpi_video0/brightness' /sys/class/backlight/acpi_video0/brightness': mmap() failed: No such device. 

I have xf86-video-intel as my graphics driver.

Last edited by Graxin (2014-03-31 18:38:26)

Offline

#2 2014-03-29 21:36:27

toz
Member
Registered: 2011-10-28
Posts: 497

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

If both acpi_video0 and intel_backlight exist, then they are recognized. You are not meant to open the brightness files as text files. You can however, cat their contents:

cat /sys/class/backlight/acpi_video0/brightness

You can else echo values between 0 and the contents of the max_brightness file into the brightness file to try to manually change the brightness.

However, have a read of the Intel Graphics wiki entry. There are a few soutions there that should help.

Offline

#3 2014-03-29 21:50:44

HiImTye
Member
From: Halifax, NS, Canada
Registered: 2012-05-09
Posts: 1,072

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

remember if you're echoing into a file with sudo, you can't do it in exactly the same way as you would do most things

sudo sh -c 'echo "mystring" > /path/to/myfile'

Offline

#4 2014-03-29 22:29:03

WonderWoofy
Member
From: Los Gatos, CA
Registered: 2012-05-19
Posts: 8,414

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

toz wrote:

However, have a read of the Intel Graphics wiki entry. There are a few soutions there that should help.

I didn't want toz's comment to get skimmer over.  You should always remember to check the wiki, as this is a common issue with new machines.

Offline

#5 2014-03-29 23:04:44

Graxin
Member
Registered: 2014-03-26
Posts: 7

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

HilmTye wrote:

remember if you're echoing into a file with sudo, you can't do it in exactly the same way as you would do most things

sudo sh -c 'echo "mystring" > /path/to/myfile'

I keep getting an input/output error when I try to run it.

WonderWoofy wrote:

I didn't want toz's comment to get skimmer over.  You should always remember to check the wiki, as this is a common issue with new machines.

I used the wiki page to try to fix it and when I created the /etc/X11/xorg.conf.d/20-intel.conf it started giving me errors that no screens were found(EE) and I had to remove it and reinstall the xf86-video-intel to get it to boot and im back at step 1 again. I'll post if I can figure out what I did wrong

Offline

#6 2014-03-30 11:33:26

toz
Member
Registered: 2011-10-28
Posts: 497

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

What is the make and model of your computer?


What video card(s) do you have and which drivers are they using:

lspci -k | grep -iA2 VGA

This command will print out info about your recognized backlight interfaces:

for interface in /sys/class/backlight/*; do echo -e "\n $interface"; cat $interface/{brightness,max_brightness,actual_brightness}; done

Last edited by toz (2014-03-30 11:33:54)

Offline

#7 2014-03-30 16:03:00

WonderWoofy
Member
From: Los Gatos, CA
Registered: 2012-05-19
Posts: 8,414

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

You said that you tried making the /etc/X11/xorg.conf.d/20-intel.conf, but you didn't go into any more detail than that.  You need to be specific about the things that you have tried.  Too often there are people who come here and say "I followed this page on the wiki..." without any detail whatsoever, and after a while someone finally pries their config from them, something like a typo or some other human error is found.  This sucks.

The xorg.conf.d file is not the only fix mentioned there though.  There are a number of kernel command line parameters that could also help your situation.  Did you try any of those?

Offline

#8 2014-03-30 17:54:25

Graxin
Member
Registered: 2014-03-26
Posts: 7

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

toz wrote:

What is the make and model of your computer?

Asus D550MA-DS01 15.6 inch Intel Celeron N2815 1.86GHz/ 4GB DDR3/ 500GB HDD/ DVD±RW/ USB3.0/ Windows 8 Notebook (Black) 

toz wrote:

What video card(s) do you have and which drivers are they using:

VGA compatible controller: Intel Corporation ValleyView Gen7 (rev 0c)
	Subsystem: ASUSTeK Computer Inc. Device 14dd
	Kernel driver in use: i915 
toz wrote:

This command will print out info about your recognized backlight interfaces:

/sys/class/backlight/acpi_video0
0
100
0

 /sys/class/backlight/intel_backlight
7812
7812
7812
WonderWoofy wrote:

You said that you tried making the /etc/X11/xorg.conf.d/20-intel.conf, but you didn't go into any more detail than that.  You need to be specific about the things that you have tried.  Too often there are people who come here and say "I followed this page on the wiki..." without any detail whatsoever, and after a while someone finally pries their config from them, something like a typo or some other human error is found.  This sucks.

The xorg.conf.d file is not the only fix mentioned there though.  There are a number of kernel command line parameters that could also help your situation.  Did you try any of those?

Point taken. None of the kernal  commands appread to allow me to change my brightess (I assumed), and I tried using xbacklight each time as well as seeing if the folders in /sys/class/backlight/ got rid of the arrow(I think it's for when there's an incorrect pointer) because I thought it wasn't recognizing the backlight for some reason.
I tried using

1. acpi_backlight=vendor
2. acpi_osi=Linux
3. acpi_osi="!Windows 2012"
4. video.use_native_backlight=1 (wiki says it helped people with kernal= 3.13)
5.  I added /etc/X11/xorg.conf.d/20-intel.conf afte another thread in which the person did this on a fresh install like me and it fixed their issue.

At this point I remember there being a different #-intel.conf in there also but when I reset my computer I got the no screens found error and ended up deleting the 20-intel and reinstall the xf86-video-intel which allowed me to boot back to my display manager correctly. The other #-intel.conf is no longer in that folder.

any idea what I missed/skipped/InputtedWrong ?

Last edited by Graxin (2014-03-30 23:29:05)

Offline

#9 2014-03-30 20:49:27

clfarron4
Member
From: London, UK
Registered: 2013-06-28
Posts: 2,163
Website

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

Graxin wrote:
toz wrote:

What is the make and model of your computer?

Asus R503U,AMD E2-1800, had Windows8 installed

Do you mean this laptop by any chance?

I'm pretty damn sure that the AMD E2-1800 is an APU (specifically this one), that comes with an AMD Radeon graphics integrated, or am I mistaken?

Further to @toz's above comment, what is the output of

lspci -k | grep -iA2 3D

Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository

Offline

#10 2014-03-30 21:16:02

Graxin
Member
Registered: 2014-03-26
Posts: 7

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

Further to @toz's above comment, what is the output of


 lspci -k | grep -iA2 3D

doesn't return anything

Last edited by Graxin (2014-03-30 23:28:30)

Offline

#11 2014-03-30 22:48:32

toz
Member
Registered: 2011-10-28
Posts: 497

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

Graxin wrote:
toz wrote:

What is the make and model of your computer?

Asus (R503U-RH21) AMD Dual-Core E2-Series APU with AMD Radeon HD 7340 Graphics 15.6inch 4GB RAM 500GB HD Windows 8 Home Premium

toz wrote:

What video card(s) do you have and which drivers are they using:

VGA compatible controller: Intel Corporation ValleyView Gen7 (rev 0c)
	Subsystem: ASUSTeK Computer Inc. Device 14dd
	Kernel driver in use: i915 

How is it that you're using an intel graphics driver for a notebook that comes with an AMD Radeon graphics chip? Everything in the specs from the linked product pages indicate one graphic chip (Radeon HD). Can you post back your Xorg.0.log file?

Offline

#12 2014-03-30 22:59:44

Reznor
Member
From: BiH
Registered: 2012-06-23
Posts: 78

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

Full guide c/p, but of course check your hardware as mentioned above. I usually install all drivers and that works every time. I have 2006 Sony Vaio with Radeon 200M and Asus K55N with A8-4500M
Brightness can be only set this way or when proprietary drivers are installed fn keys works out of box.

Open a terminal
Run: ls /sys/class/backlight/*/brightness. Example output would be:

/sys/class/backlight/acpi_video0/brightness

If nothing is found, the kernel does not support brightness control (missing drivers?). Otherwise, you can use the below commands (replace acpi_video0 accordingly):

Get the current brightness level: cat /sys/class/backlight/acpi_video0/brightness
Get the maximum brightness level: cat /sys/class/backlight/acpi_video0/max_brightness
These commands return brightness levels which ranges from zero to max_brightness (see above).

To change the brightness level, you need to write a number to the brightness file. This cannot be done by an editor like gedit. Say you want to change your brightness to 5, you have to run:

echo 5 | sudo tee /sys/class/backlight/acpi_video0/brightness
Alternatively, if you just want to set the brightness level to the highest available:

sudo tee /sys/class/backlight/acpi_video0/brightness < /sys/class/backlight/acpi_video0/max_brightness


rm -rf /

Offline

#13 2014-03-30 23:27:18

Graxin
Member
Registered: 2014-03-26
Posts: 7

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

toz wrote:
Graxin wrote:
toz wrote:

What is the make and model of your computer?

Asus (R503U-RH21) AMD Dual-Core E2-Series APU with AMD Radeon HD 7340 Graphics 15.6inch 4GB RAM 500GB HD Windows 8 Home Premium

toz wrote:

What video card(s) do you have and which drivers are they using:

VGA compatible controller: Intel Corporation ValleyView Gen7 (rev 0c)
	Subsystem: ASUSTeK Computer Inc. Device 14dd
	Kernel driver in use: i915 

How is it that you're using an intel graphics driver for a notebook that comes with an AMD Radeon graphics chip? Everything in the specs from the linked product pages indicate one graphic chip (Radeon HD). Can you post back your Xorg.0.log file?

I did link the wrong one there was only one 300$ where I bought it and assumed it was the same, its a  Asus D550MA-DS01 15.6 inch Intel Celeron N2815 1.86GHz/ 4GB DDR3/ 500GB HDD/ DVD±RW/ USB3.0/ Windows 8 Notebook (Black)     (I dug out the box)

xorg file

[     9.187] 
X.Org X Server 1.15.0
Release Date: 2013-12-27
[     9.188] X Protocol Version 11, Revision 0
[     9.188] Build Operating System: Linux 3.12.5-1-ARCH x86_64 
[     9.188] Current Operating System: Linux localhost 3.13.7-1-ARCH #1 SMP PREEMPT Mon Mar 24 20:06:08 CET 2014 x86_64
[     9.188] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=5553710a-36ed-43b7-a527-25df567e2404 rw quiet
[     9.188] Build Date: 09 January 2014  08:47:24AM
[     9.188]  
[     9.188] Current version of pixman: 0.32.4
[     9.188] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     9.188] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     9.188] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar 29 11:28:05 2014
[     9.291] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     9.291] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     9.328] (==) No Layout section.  Using the first Screen section.
[     9.328] (==) No screen section available. Using defaults.
[     9.328] (**) |-->Screen "Default Screen Section" (0)
[     9.328] (**) |   |-->Monitor "<default monitor>"
[     9.340] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     9.340] (==) Automatically adding devices
[     9.340] (==) Automatically enabling devices
[     9.340] (==) Automatically adding GPU devices
[     9.371] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
[     9.371] 	Entry deleted from font path.
[     9.371] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
[     9.371] 	Entry deleted from font path.
[     9.371] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[     9.371] 	Entry deleted from font path.
[     9.371] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[     9.371] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[     9.371] 	Entry deleted from font path.
[     9.371] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[     9.371] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/
[     9.371] (==) ModulePath set to "/usr/lib/xorg/modules"
[     9.371] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     9.371] (II) Loader magic: 0x804c80
[     9.371] (II) Module ABI versions:
[     9.371] 	X.Org ANSI C Emulation: 0.4
[     9.371] 	X.Org Video Driver: 15.0
[     9.371] 	X.Org XInput driver : 20.0
[     9.371] 	X.Org Server Extension : 8.0
[     9.372] (II) xfree86: Adding drm device (/dev/dri/card0)
[     9.374] (--) PCI:*(0:0:2:0) 8086:0f31:1043:14dd rev 12, Mem @ 0xd0000000/4194304, 0xc0000000/268435456, I/O @ 0x0000f080/8
[     9.374] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     9.382] Initializing built-in extension Generic Event Extension
[     9.382] Initializing built-in extension SHAPE
[     9.382] Initializing built-in extension MIT-SHM
[     9.382] Initializing built-in extension XInputExtension
[     9.382] Initializing built-in extension XTEST
[     9.382] Initializing built-in extension BIG-REQUESTS
[     9.382] Initializing built-in extension SYNC
[     9.382] Initializing built-in extension XKEYBOARD
[     9.382] Initializing built-in extension XC-MISC
[     9.382] Initializing built-in extension SECURITY
[     9.382] Initializing built-in extension XINERAMA
[     9.383] Initializing built-in extension XFIXES
[     9.383] Initializing built-in extension RENDER
[     9.383] Initializing built-in extension RANDR
[     9.383] Initializing built-in extension COMPOSITE
[     9.383] Initializing built-in extension DAMAGE
[     9.383] Initializing built-in extension MIT-SCREEN-SAVER
[     9.383] Initializing built-in extension DOUBLE-BUFFER
[     9.383] Initializing built-in extension RECORD
[     9.383] Initializing built-in extension DPMS
[     9.383] Initializing built-in extension Present
[     9.383] Initializing built-in extension DRI3
[     9.383] Initializing built-in extension X-Resource
[     9.383] Initializing built-in extension XVideo
[     9.383] Initializing built-in extension XVideo-MotionCompensation
[     9.383] Initializing built-in extension XFree86-VidModeExtension
[     9.383] Initializing built-in extension XFree86-DGA
[     9.383] Initializing built-in extension XFree86-DRI
[     9.383] Initializing built-in extension DRI2
[     9.383] (II) "glx" will be loaded by default.
[     9.383] (II) LoadModule: "dri2"
[     9.383] (II) Module "dri2" already built-in
[     9.383] (II) LoadModule: "glamoregl"
[     9.383] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     9.559] (II) Module glamoregl: vendor="X.Org Foundation"
[     9.559] 	compiled for 1.15.0, module version = 0.6.0
[     9.559] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     9.559] (II) LoadModule: "glx"
[     9.574] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     9.582] (II) Module glx: vendor="X.Org Foundation"
[     9.582] 	compiled for 1.15.0, module version = 1.0.0
[     9.582] 	ABI class: X.Org Server Extension, version 8.0
[     9.582] (==) AIGLX enabled
[     9.582] Loading extension GLX
[     9.582] (==) Matched intel as autoconfigured driver 0
[     9.583] (==) Matched intel as autoconfigured driver 1
[     9.583] (==) Matched modesetting as autoconfigured driver 2
[     9.583] (==) Matched fbdev as autoconfigured driver 3
[     9.583] (==) Matched vesa as autoconfigured driver 4
[     9.583] (==) Assigned the driver to the xf86ConfigLayout
[     9.583] (II) LoadModule: "intel"
[     9.583] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[     9.613] (II) Module intel: vendor="X.Org Foundation"
[     9.613] 	compiled for 1.15.0, module version = 2.99.911
[     9.613] 	Module class: X.Org Video Driver
[     9.613] 	ABI class: X.Org Video Driver, version 15.0
[     9.613] (II) LoadModule: "modesetting"
[     9.614] (WW) Warning, couldn't open module modesetting
[     9.614] (II) UnloadModule: "modesetting"
[     9.614] (II) Unloading modesetting
[     9.614] (EE) Failed to load module "modesetting" (module does not exist, 0)
[     9.614] (II) LoadModule: "fbdev"
[     9.614] (WW) Warning, couldn't open module fbdev
[     9.614] (II) UnloadModule: "fbdev"
[     9.614] (II) Unloading fbdev
[     9.614] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     9.614] (II) LoadModule: "vesa"
[     9.615] (WW) Warning, couldn't open module vesa
[     9.615] (II) UnloadModule: "vesa"
[     9.615] (II) Unloading vesa
[     9.615] (EE) Failed to load module "vesa" (module does not exist, 0)
[     9.615] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[     9.616] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
[     9.616] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
[     9.616] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
[     9.616] (++) using VT number 7

[     9.626] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics
[     9.626] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2
[     9.626] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     9.626] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[     9.626] (==) intel(0): RGB weight 888
[     9.626] (==) intel(0): Default visual is TrueColor
[     9.627] (**) intel(0): Framebuffer tiled
[     9.627] (**) intel(0): Pixmaps tiled
[     9.627] (**) intel(0): "Tear free" disabled
[     9.627] (**) intel(0): Forcing per-crtc-pixmaps? no
[     9.627] (II) intel(0): Output eDP1 has no monitor section
[     9.627] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output eDP1
[     9.627] (II) intel(0): Output VGA1 has no monitor section
[     9.627] (II) intel(0): Output HDMI1 has no monitor section
[     9.627] (II) intel(0): Output DP1 has no monitor section
[     9.628] (II) intel(0): Output HDMI2 has no monitor section
[     9.628] (II) intel(0): Output VIRTUAL1 has no monitor section
[     9.628] (--) intel(0): Output eDP1 using initial mode 1366x768 on pipe 0
[     9.628] (==) intel(0): DPI set to (96, 96)
[     9.628] (II) Loading sub module "dri2"
[     9.628] (II) LoadModule: "dri2"
[     9.628] (II) Module "dri2" already built-in
[     9.628] (==) Depth 24 pixmap format is 32 bpp
[     9.649] (II) intel(0): SNA initialized with Baytrail (gen7) backend
[     9.649] (==) intel(0): Backing store enabled
[     9.649] (==) intel(0): Silken mouse enabled
[     9.649] (II) intel(0): HW Cursor enabled
[     9.649] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[     9.650] (==) intel(0): DPMS enabled
[     9.650] (II) intel(0): [DRI2] Setup complete
[     9.650] (II) intel(0): [DRI2]   DRI driver: i965
[     9.650] (II) intel(0): [DRI2]   VDPAU driver: i965
[     9.650] (II) intel(0): direct rendering: DRI2 Enabled
[     9.650] (==) intel(0): hotplug detection: "enabled"
[     9.650] (--) RandR disabled
[     9.765] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[     9.765] (II) AIGLX: enabled GLX_ARB_create_context
[     9.765] (II) AIGLX: enabled GLX_ARB_create_context_profile
[     9.765] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[     9.765] (II) AIGLX: enabled GLX_INTEL_swap_event
[     9.765] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[     9.765] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[     9.765] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[     9.765] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[     9.765] (II) AIGLX: Loaded and initialized i965
[     9.765] (II) GLX: Initialized DRI2 GL provider for screen 0
[     9.775] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[     9.851] (II) intel(0): Setting screen physical size to 361 x 203
[    10.127] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    10.127] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    10.127] (II) LoadModule: "evdev"
[    10.127] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    10.141] (II) Module evdev: vendor="X.Org Foundation"
[    10.142] 	compiled for 1.15.0, module version = 2.8.2
[    10.142] 	Module class: X.Org XInput Driver
[    10.142] 	ABI class: X.Org XInput driver, version 20.0
[    10.142] (II) Using input driver 'evdev' for 'Power Button'
[    10.142] (**) Power Button: always reports core events
[    10.142] (**) evdev: Power Button: Device: "/dev/input/event4"
[    10.142] (--) evdev: Power Button: Vendor 0 Product 0x1
[    10.142] (--) evdev: Power Button: Found keys
[    10.142] (II) evdev: Power Button: Configuring as keyboard
[    10.142] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event4"
[    10.142] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    10.142] (**) Option "xkb_rules" "evdev"
[    10.142] (**) Option "xkb_model" "pc104"
[    10.142] (**) Option "xkb_layout" "us"
[    10.199] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[    10.199] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    10.199] (II) Using input driver 'evdev' for 'Video Bus'
[    10.199] (**) Video Bus: always reports core events
[    10.199] (**) evdev: Video Bus: Device: "/dev/input/event11"
[    10.199] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    10.199] (--) evdev: Video Bus: Found keys
[    10.199] (II) evdev: Video Bus: Configuring as keyboard
[    10.199] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input18/event11"
[    10.199] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    10.199] (**) Option "xkb_rules" "evdev"
[    10.199] (**) Option "xkb_model" "pc104"
[    10.199] (**) Option "xkb_layout" "us"
[    10.200] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    10.200] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    10.200] (II) Using input driver 'evdev' for 'Power Button'
[    10.200] (**) Power Button: always reports core events
[    10.200] (**) evdev: Power Button: Device: "/dev/input/event1"
[    10.200] (--) evdev: Power Button: Vendor 0 Product 0x1
[    10.200] (--) evdev: Power Button: Found keys
[    10.200] (II) evdev: Power Button: Configuring as keyboard
[    10.200] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input5/event1"
[    10.200] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    10.200] (**) Option "xkb_rules" "evdev"
[    10.200] (**) Option "xkb_model" "pc104"
[    10.200] (**) Option "xkb_layout" "us"
[    10.201] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[    10.201] (II) No input driver specified, ignoring this device.
[    10.201] (II) This device may have been added with another device file.
[    10.202] (II) config/udev: Adding input device Sleep Button (/dev/input/event3)
[    10.202] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    10.202] (II) Using input driver 'evdev' for 'Sleep Button'
[    10.202] (**) Sleep Button: always reports core events
[    10.202] (**) evdev: Sleep Button: Device: "/dev/input/event3"
[    10.202] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    10.202] (--) evdev: Sleep Button: Found keys
[    10.202] (II) evdev: Sleep Button: Configuring as keyboard
[    10.202] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input7/event3"
[    10.202] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    10.202] (**) Option "xkb_rules" "evdev"
[    10.202] (**) Option "xkb_model" "pc104"
[    10.202] (**) Option "xkb_layout" "us"
[    10.202] (II) config/udev: Adding drm device (/dev/dri/card0)
[    10.203] (II) config/udev: Adding input device USB2.0 HD UVC WebCam (/dev/input/event9)
[    10.203] (**) USB2.0 HD UVC WebCam: Applying InputClass "evdev keyboard catchall"
[    10.203] (II) Using input driver 'evdev' for 'USB2.0 HD UVC WebCam'
[    10.203] (**) USB2.0 HD UVC WebCam: always reports core events
[    10.203] (**) evdev: USB2.0 HD UVC WebCam: Device: "/dev/input/event9"
[    10.203] (--) evdev: USB2.0 HD UVC WebCam: Vendor 0x4f2 Product 0xb404
[    10.203] (--) evdev: USB2.0 HD UVC WebCam: Found keys
[    10.203] (II) evdev: USB2.0 HD UVC WebCam: Configuring as keyboard
[    10.203] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/input/input17/event9"
[    10.203] (II) XINPUT: Adding extended input device "USB2.0 HD UVC WebCam" (type: KEYBOARD, id 10)
[    10.203] (**) Option "xkb_rules" "evdev"
[    10.203] (**) Option "xkb_model" "pc104"
[    10.204] (**) Option "xkb_layout" "us"
[    10.204] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event7)
[    10.204] (II) No input driver specified, ignoring this device.
[    10.204] (II) This device may have been added with another device file.
[    10.205] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event6)
[    10.205] (II) No input driver specified, ignoring this device.
[    10.205] (II) This device may have been added with another device file.
[    10.205] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event8)
[    10.205] (**) Asus WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[    10.205] (II) Using input driver 'evdev' for 'Asus WMI hotkeys'
[    10.205] (**) Asus WMI hotkeys: always reports core events
[    10.205] (**) evdev: Asus WMI hotkeys: Device: "/dev/input/event8"
[    10.205] (--) evdev: Asus WMI hotkeys: Vendor 0 Product 0
[    10.205] (--) evdev: Asus WMI hotkeys: Found keys
[    10.205] (II) evdev: Asus WMI hotkeys: Configuring as keyboard
[    10.205] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input16/event8"
[    10.205] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 11)
[    10.205] (**) Option "xkb_rules" "evdev"
[    10.205] (**) Option "xkb_model" "pc104"
[    10.205] (**) Option "xkb_layout" "us"
[    10.206] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    10.206] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    10.206] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    10.206] (**) AT Translated Set 2 keyboard: always reports core events
[    10.206] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    10.206] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    10.206] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    10.206] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    10.207] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    10.207] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[    10.207] (**) Option "xkb_rules" "evdev"
[    10.207] (**) Option "xkb_model" "pc104"
[    10.207] (**) Option "xkb_layout" "us"
[    10.207] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event10)
[    10.207] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
[    10.207] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[    10.208] (**) ETPS/2 Elantech Touchpad: Applying InputClass "Default clickpad buttons"
[    10.208] (II) LoadModule: "synaptics"
[    10.208] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    10.214] (II) Module synaptics: vendor="X.Org Foundation"
[    10.214] 	compiled for 1.15.0, module version = 1.7.4
[    10.214] 	Module class: X.Org XInput Driver
[    10.215] 	ABI class: X.Org XInput driver, version 20.0
[    10.215] (II) Using input driver 'synaptics' for 'ETPS/2 Elantech Touchpad'
[    10.215] (**) ETPS/2 Elantech Touchpad: always reports core events
[    10.215] (**) Option "Device" "/dev/input/event10"
[    10.317] (II) synaptics: ETPS/2 Elantech Touchpad: found clickpad property
[    10.317] (--) synaptics: ETPS/2 Elantech Touchpad: x-axis range 0 - 3097 (res 31)
[    10.317] (--) synaptics: ETPS/2 Elantech Touchpad: y-axis range 0 - 2119 (res 32)
[    10.318] (--) synaptics: ETPS/2 Elantech Touchpad: pressure range 0 - 255
[    10.318] (--) synaptics: ETPS/2 Elantech Touchpad: finger width range 0 - 15
[    10.318] (--) synaptics: ETPS/2 Elantech Touchpad: buttons: left double triple
[    10.318] (--) synaptics: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
[    10.318] (**) Option "TapButton1" "1"
[    10.318] (**) Option "TapButton2" "2"
[    10.318] (**) Option "TapButton3" "3"
[    10.318] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[    10.318] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
[    10.319] (**) ETPS/2 Elantech Touchpad: always reports core events
[    10.377] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input13/event10"
[    10.377] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 13)
[    10.377] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MinSpeed is now constant deceleration 2.5
[    10.378] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) MaxSpeed is now 1.75
[    10.378] (**) synaptics: ETPS/2 Elantech Touchpad: (accel) AccelFactor is now 0.053
[    10.380] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
[    10.380] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 1
[    10.380] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[    10.380] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[    10.380] (--) synaptics: ETPS/2 Elantech Touchpad: touchpad found
[    10.382] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[    10.382] (**) ETPS/2 Elantech Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
[    10.384] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[    10.384] (II) No input driver specified, ignoring this device.
[    10.384] (II) This device may have been added with another device file.
[    23.488] (II) intel(0): EDID vendor "CMO", prod id 5543
[    23.488] (II) intel(0): Printing DDC gathered Modelines:
[    23.488] (II) intel(0): Modeline "1366x768"x0.0   69.30  1366 1382 1416 1466  768 770 776 788 -hsync -vsync (47.3 kHz eP)
[  2306.980] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  4620.847] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  5737.672] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  7514.223] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  9783.865] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 12282.167] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 12974.670] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 13577.704] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 18922.194] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 19060.223] (II) config/udev: removing device USB2.0 HD UVC WebCam
[ 19060.242] (II) evdev: USB2.0 HD UVC WebCam: Close
[ 19060.242] (II) UnloadModule: "evdev"
[ 19060.588] (II) config/udev: Adding input device USB2.0 HD UVC WebCam (/dev/input/event9)
[ 19060.588] (**) USB2.0 HD UVC WebCam: Applying InputClass "evdev keyboard catchall"
[ 19060.588] (II) Using input driver 'evdev' for 'USB2.0 HD UVC WebCam'
[ 19060.588] (**) USB2.0 HD UVC WebCam: always reports core events
[ 19060.588] (**) evdev: USB2.0 HD UVC WebCam: Device: "/dev/input/event9"
[ 19060.588] (--) evdev: USB2.0 HD UVC WebCam: Vendor 0x4f2 Product 0xb404
[ 19060.588] (--) evdev: USB2.0 HD UVC WebCam: Found keys
[ 19060.588] (II) evdev: USB2.0 HD UVC WebCam: Configuring as keyboard
[ 19060.588] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/input/input25/event9"
[ 19060.588] (II) XINPUT: Adding extended input device "USB2.0 HD UVC WebCam" (type: KEYBOARD, id 10)
[ 19060.588] (**) Option "xkb_rules" "evdev"
[ 19060.588] (**) Option "xkb_model" "pc104"
[ 19060.588] (**) Option "xkb_layout" "us"
[ 19159.812] (II) config/udev: removing device USB2.0 HD UVC WebCam
[ 19159.822] (II) evdev: USB2.0 HD UVC WebCam: Close
[ 19159.822] (II) UnloadModule: "evdev"
[ 19160.166] (II) config/udev: Adding input device USB2.0 HD UVC WebCam (/dev/input/event9)
[ 19160.166] (**) USB2.0 HD UVC WebCam: Applying InputClass "evdev keyboard catchall"
[ 19160.166] (II) Using input driver 'evdev' for 'USB2.0 HD UVC WebCam'
[ 19160.166] (**) USB2.0 HD UVC WebCam: always reports core events
[ 19160.166] (**) evdev: USB2.0 HD UVC WebCam: Device: "/dev/input/event9"
[ 19160.167] (--) evdev: USB2.0 HD UVC WebCam: Vendor 0x4f2 Product 0xb404
[ 19160.167] (--) evdev: USB2.0 HD UVC WebCam: Found keys
[ 19160.167] (II) evdev: USB2.0 HD UVC WebCam: Configuring as keyboard
[ 19160.167] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/input/input32/event9"
[ 19160.167] (II) XINPUT: Adding extended input device "USB2.0 HD UVC WebCam" (type: KEYBOARD, id 10)
[ 19160.167] (**) Option "xkb_rules" "evdev"
[ 19160.167] (**) Option "xkb_model" "pc104"
[ 19160.167] (**) Option "xkb_layout" "us"
[ 19905.212] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 22704.936] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 24907.438] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 25521.111] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 26398.019] (II) intel(0): switch to mode 1366x768@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none

Last edited by Graxin (2014-03-30 23:29:33)

Offline

#14 2014-03-31 00:26:04

toz
Member
Registered: 2011-10-28
Posts: 497

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

At this point I remember there being a different #-intel.conf in there also but when I reset my computer I got the no screens found error and ended up deleting the 20-intel and reinstall the xf86-video-intel which allowed me to boot back to my display manager correctly. The other #-intel.conf is no longer in that folder.

Can you post back the contents of the 20-intel.conf file that you used? It really shouldn't prevent X from starting. If you try it again, it would be interesting to see the Xorg.0.log file from that attempt.

Offline

#15 2014-03-31 18:27:28

Graxin
Member
Registered: 2014-03-26
Posts: 7

Re: [SOLVED] Trying to fix brightness apparently intel/acpi not recognized

toz wrote:

At this point I remember there being a different #-intel.conf in there also but when I reset my computer I got the no screens found error and ended up deleting the 20-intel and reinstall the xf86-video-intel which allowed me to boot back to my display manager correctly. The other #-intel.conf is no longer in that folder.

Can you post back the contents of the 20-intel.conf file that you used? It really shouldn't prevent X from starting. If you try it again, it would be interesting to see the Xorg.0.log file from that attempt.


I took the file from the wiki

/etc/X11/xorg.conf.d/20-intel.conf

Section "Device"
        Identifier  "card0"
        Driver      "intel"
        Option      "Backlight"  "intel_backlight"
        BusID       "PCI:0:2:0"

EndSection 

Yesterday I reinstall arch and put the file in and today it works, no idea why it wasn't before. Thanks for everyones help.

Last edited by Graxin (2014-03-31 18:42:24)

Offline

Board footer

Powered by FluxBB