Tengo el mismo modelo y tuve el mismo problema durante todo el desarrollo de 13.04 hasta un día antes del lanzamiento y luego comenzó a funcionar. Archivé el error aquí: Error # 1105604: el control de brillo dejó de funcionar
Lo que puede hacer es usar una anulación manual que usé durante el desarrollo, modificando /etc/rc.local
lo siguiente:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
echo 978 > /sys/class/backlight/intel_backlight/brightness
chmod 777 /sys/class/backlight/intel_backlight/brightness
exit 0
La desventaja es que no puede cambiar el brillo fácilmente, excepto modificando manualmente el archivo /sys/class/backlight/intel_backlight/brightness
Cuando lo hice funcionar, utilicé las Fnteclas de brillo + para verificar la configuración: la configuración más baja es 490
y luego aumenta en incrementos de 488
. Estas son las configuraciones predeterminadas para /sys/class/backlight/intel_backlight/brightness
:
490 Lowest with backlight on
978
1466
1954
2442
2930
3418
3906
4394
4882 Brightest
Mis controles de brillo funcionaban anteriormente, pero están rotos nuevamente, así que decidí crear un script para administrarlo:
#!/bin/bash
# Dell N4010 brightness control workaround
# Note: add the following to /etc/rc.local
# chmod 777 /sys/class/backlight/intel_backlight/brightness
# For convenience I've assigned the keys Alt-Up and Alt-Down to run this script
# Fine tune the bump parameter as required
#
# Usage:
# ./brightchg.sh up # bump up brightness
# ./brightchg.sh down # bump down brightness
#
curr=`cat /sys/class/backlight/intel_backlight/brightness`
bump=244
if [ "$1" == "up" ]; then
curr=`echo "$curr + $bump" | bc`
else
curr=`echo "$curr - $bump" | bc`
fi
# Set the brightness to the new level making sure it's always above 30 (minimum usable)
if [ $curr -gt 30 ]; then
echo $curr | tee /sys/class/backlight/intel_backlight/brightness
fi
Nota: agregué una línea /etc/rc/local
para darme autoridad sobre el archivo de brillo:
chmod 777 /sys/class/backlight/intel_backlight/brightness
Luego lo asigné a las teclas Alt+ Upy Alt+ Downcomo se muestra aquí: