解决办法(不完美,至少比每次开机手工调亮度好。):
<span style="font-size:14px;">1.
代码:
sudo apt-get install xbacklight</span>
<span style="font-size:14px;">2.
代码:
gnome-session-properties</span>
3.
附件:

参考:http://www.maketecheasier.com/configure-screen-brightness-in-ubuntu/
另一种方法:
<span style="font-size:14px;">1.Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, runthe command below will give you the maximum level of your laptopbacklight:
代码:
cat/sys/class/backlight/acpi_video0/max_brightness
Mineis 100, so I can set backlight level from 0 to 100.</span>
<span style="font-size:14px;">2.Run the command below one by one. You’ll get the super userprivilege and open the /etc/rc.local file, a script executed at theend of each multiuser runlevel, with gedit editor.
代码:
sudo gedit /etc/rc.local
</span>
<span style="font-size:14px;">Add the line below before the last. Change the number 0 to the brightnesslevel you want.
引用:
echo0 > /sys/class/backlight/acpi_video0/brightness</span>
参考:http://ubuntuhandbook.org/index.php/2014/04/save-screen-brightness-settings-in-ubuntu-14-04/