Linux/Ubuntu2012. 3. 31. 19:23
Xnote LW25에 설치했더니 화면밝기가 가장 어둡게 나온다 -_-
그래서 인터넷 뒤져보니 echo 0를 넣으라는데
실험적으로 넣어보니 0~8 까지 입력이 가능했다.
/etc/rc.local에서 빨간 라인을 추가하고 리부팅 하면 다음번 부터 가장 밝게 나온다.

$ sudo vi /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 8 > /sys/class/backlight/acpi_video0/brightness 
exit 0 
 

[링크 : http://askubuntu.com/questions/3841/desktop-doesnt-remember-brightness-settings-after-a-reboot]
Posted by 구차니