注:随着近几次更新,Ubuntu的兼容性提升了很多,这个问题应该比较少出现了。

很多人在安装Ubuntu之后发现不能调节显示器亮度了,包括“系统设置”和快捷键,搜索一番之后发现了一个解决方案,目前使用一切良好。

在终端输入: sudo gedit /etc/X11/xorg.conf (也就是编辑xorg.conf) 文件内加入以下内容:

Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
EndSection
Section "Module"
Load "glx"
EndSection
Section "Device"
Identifier "Default Device"
Driver "nvidia"
Option "NoLogo" "True"
Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection

添加完之后重启系统,就可以通过“系统设置”和快捷键正常调节亮度了