Ubuntu系统安装显卡驱动及安装完成后屏幕亮度无法调节问题

解决方案:

1)修改grub文件---sudo gedit /etc/default/grub

2)找到第11行,修改成GRUB_CMDLINE_LINUX="acpi_backlight=vendor"

3)更新---sudo update-grub

4)修改X Server的配置文件---sudo gedit /usr/share/X11/xorg.conf.d/10-nvidia.conf

5)在文件末尾添加如下内容:

Section "Device"

    Identifier "Device0"

    Driver "nvidia"

    VendorName "NVIDIA Corporation"

    Option "RegistryDwords" "EnableBrightnessControl=1"

    Option "NoLogo" "True"

EndSection

6)禁用ideapad_laptop---sudo gedit /etc/modprobe.d/blacklist.conf

7)接上6)在最后添加如下内容:

blacklist ideapad_laptop

8)更新---sudo update-initramfs -u

9)重启电脑后就可以进行调节亮度

亲测有效

猜你喜欢

转载自blog.csdn.net/tangling1/article/details/132152761