나는 같은 모델을 가지고 있으며 릴리스 전날까지 13.04 개발을 통해 동일한 문제를 겪고 나서 작동하기 시작했습니다. 버그를 여기에 제출했습니다 : 버그 # 1105604 : 밝기 제어 작동이 중지되었습니다
당신이 할 수있는 일은 /etc/rc.local다음과 같이 수정하여 개발 전체에서 사용한 수동 재정의를 사용하는 것입니다.
#!/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
단점은 파일을 수동으로 수정하지 않으면 밝기를 쉽게 변경할 수 없다는 것입니다 /sys/class/backlight/intel_backlight/brightness
내가 작동했을 때 Fn+ 밝기 키를 사용하여 설정을 확인했습니다. 가장 낮은 설정은 490그 이후에 증가 488합니다. 기본 설정은 /sys/class/backlight/intel_backlight/brightness다음과 같습니다.
490 Lowest with backlight on
978
1466
1954
2442
2930
3418
3906
4394
4882 Brightest
내 밝기 컨트롤이 이전에는 작동했지만 다시 고장 났으므로 이를 관리 할 스크립트 를 만들기로 결정 했습니다.
#!/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
참고 : /etc/rc/local밝기 파일에 권한을 부여하기 위해 줄을 추가했습니다 .
chmod 777 /sys/class/backlight/intel_backlight/brightness
그런 다음 여기에 표시된 것처럼 Alt+ Up및 Alt+ 키에 할당했습니다 Down.
