我正在索尼 Vaio SVE1513BYN。我安装了 Ubuntu 13.10。我设置了笔记本电脑的亮度,然后重新启动笔记本电脑后,亮度就改变了。亮度默认为最大。
答案1
编辑文件 /etc/default/grub。你可以进入终端并输入以下内容:
sudo gedit /etc/default/grub
更改此行:
GRUB_CMDLINE_LINUX=""
到
GRUB_CMDLINE_LINUX="quiet splash acpi_osi=Linux acpi_backlight=vendor"
然后保存并运行:
sudo update-grub
然后重新启动计算机,它就可以工作了。
答案2
您可以尝试在 /etc/rc.local 中添加一行来设置所需的亮度级别。要编辑该文件,请运行
gksudo 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
用所需的亮度级别替换。