원하는 밝기 레벨을 설정하는 라인을 /etc/rc.local에 추가 할 수 있습니다. 파일을 편집하려면 다음을 실행하십시오.
sudo -H gedit /etc/rc.local
다음을 추가하십시오
echo X > /sys/class/backlight/intel_backlight/brightness
최종 결과는 다음과 같습니다
#!/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 X > /sys/class/backlight/intel_backlight/brightness
exit 0
X
원하는 밝기 수준으로 대체 하십시오.
/etc/rc.local이 존재하지 않는 경우, 새로운 Ubuntu 릴리스의 경우와 같이,이를 작성하고 다음 명령으로 실행 가능해야합니다.
printf '%s\n' '#!/bin/bash' 'exit 0' | sudo tee -a /etc/rc.local
sudo chmod +x /etc/rc.local
추신 : 또는 /sys/class/backlight/acpi_video0/brightness
위의 대신에 있을 수 있습니다 . 밝기 수준은 크게 다르며 0에서 10 또는 1000 사이 일 수 있습니다. 최대 값을 찾으려면
cat /sys/class/backlight/acpi_video0/max_brightness
or
cat /sys/class/backlight/intel_backlight/max_brightness