sudo gedit /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.
#exit 0
插入这句话到代码中:
echo 0 > /sys/class/backlight/acpi_video0/brightness
保证修改后代码如下,注意
exit
前的“
#”
[cpp] view plaincopy
#!/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 0 > /sys/class/backlight/acpi_video0/brightness
exit 0
其中
echo
后面的值为
0-10
,对应为
0
到
100%,
如
echo 5
表示一半
亮度
保存后退出,重启就可以了。
注意:大多数人都是
acpi_video0
,根据自
己
/sys/class/backlight/
下面文件决定
2
、亮度
调节
亮度
调节
依赖
与
你的
bios
和内核版本,你可以
尝试
以下代码:
kernel boot
选项:
当你启动系统时,出
现
在
grup
的屏幕时,按
e
键进行
编辑
,在
kernel
这一行添加:
[cpp] view plaincopy
nomodeset acpi_backlight=vendor
注意:有些
硬
件可
能
会是不
同
的选项
.
[cpp] view plaincopy
Intel - nomodeset acpi_backlight=intel Acer -
acpi_backlight=acer_acpi or even acpi_osi=Linux
acpi_backlight=legacy.
我
的
电脑
是
acer 4830tg
,
我直接
写的
=vendor
也是
同
样可以
正常
工
作
,你也可以通过
去查
找
你要
设
置的选项。
[cpp] view plaincopy
quiet splash nomodeset acpi_backlight=vendor
退出启动,如果
能正常
启动,就
把
这项选项添加到
默认
的选项中,
编辑
文件
/etc/default/grub
[cpp] view plaincopy
# command line
sudo -e /etc/default/grub
# graphical
gksu gedit /etc/default/grub
把
这一行改成如下:
[cpp] view plaincopy
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash
nomodeset acpi_backlight=vendor"
保存,更新
grup
[cpp] view plaincopy
sudo update-grub