shihty

重装ubuntu以后,我的Y450键盘控制屏幕亮度不灵了~网上查了一下,解决方案是这样的,如下:

 

修改你的xorg.conf


xorg.conf文件的位置就在/etc/X11/下面。
在终端中输入:
sudo gedit /etc/X11/xorg.conf(注意大小写)
这时会提示你输入密码
密码输入完成后会打开一个文本文档,也就是xorg.conf

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
改成
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection
然后保存,退出,重启之后,你就会发现可以调节屏幕背光亮度了。

红色这句就是想向系统注册的意思,希望能帮到大家哦!

分类:

技术点:

相关文章:

  • 2021-10-12
  • 2021-12-02
  • 2021-12-15
  • 2022-02-08
  • 2021-12-02
猜你喜欢
  • 2021-11-01
  • 2021-11-29
  • 2022-01-05
  • 2022-02-21
  • 2022-03-03
相关资源
相似解决方案