我有一台配备 Intel Core i3 的 Aspire 5740,Fn + 箭头键仍可调用亮度调节器,但对实际改变亮度没有任何效果。滑块移动,但亮度保持最大。系统设置也允许我移动滑块,但同样没有任何效果。
它正在耗尽我的电池——请告诉我该编写什么代码来解决这个问题!
答案1
这是一个已知错误。您可以在此处查看: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/543294 有人发布了这样的解决方法:
1. Open a terminal (Program - Accessories - Terminal)
2. Type in "sudo gedit /etc/default/grub" (without the "")
3. Find the line that says: GRUB_CMDLINE_LINUX="quiet splash"
4. Edit it so it says: GRUB_CMDLINE_LINUX="quiet splash acpi_backlight=vendor"
5. Save and exit
6. Run the command "sudo update-grub" (again without quotes of course)
7. Reboot and enjoy!
是的,这对我有用
答案2
第一次备份:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.backup
然后:
sudo gedit /etc/X11/xorg.conf
找到"Option "No Logo" "
下面的添加:
Option "RegistryDwords" "EnableBrightnessControl=1"
(包括所有引文)
然后保存或重新启动。这应该可行,但您可能需要编辑 grub,请先尝试上述操作。