無法調節筆記本屏幕亮度

笔记本/便携移动设备,手机平板等软硬件
回复
friend43
帖子: 166
注册时间: 2015-01-07 16:41
系统: ubuntu 14.04

無法調節筆記本屏幕亮度

#1

帖子 friend43 »

本人Thinkpad W520的筆記本(2.5GCpu,NV2000m顯卡),Ubuntu的顯卡驅動是官方下載的331。已在Bios里禁用集成顯卡功能。裝有Win7和Ubuntu 14.04系統,兩個系統都能正常啟動。但Ubuntu系統無法調節屏幕亮度,不管是FN+Home或是FN+End。屏幕太亮。還朢有知道解決方案的朋友能提供解決方案。
头像
peteryeh64
论坛版主
帖子: 9386
注册时间: 2008-12-20 15:43
系统: 家kubuntu20.04
来自: 心靈深處

Re: 無法調節筆記本屏幕亮度

#2

帖子 peteryeh64 »

...可以一開機時調整好...或者進入獨立顯卡的控制面板裡面調整...我的也是FN沒有用...
[论坛版主行为规定]+[PITIVI簡易教程]+[ubuntu裝迅雷]
[releases.ubuntu.com]+[cdimage.ubuntu.com]+[old-releases.ubuntu.com]
[學ubuntu必須拜讀懶蝸牛"笨兔兔的故事"=viewtopic.php?f=112&t=162040][Linux明日的希望在中國]
taohunter
帖子: 1555
注册时间: 2012-03-31 3:29

Re: 無法調節筆記本屏幕亮度

#3

帖子 taohunter »

先在终端执行以下命令,把输出贴上来:

代码: 全选

cat /etc/X11/xorg.conf
三年后终于回到16.04--稳定了!
friend43
帖子: 166
注册时间: 2015-01-07 16:41
系统: ubuntu 14.04

Re: 無法調節筆記本屏幕亮度

#5

帖子 friend43 »

taohunter 写了:先在终端执行以下命令,把输出贴上来:

代码: 全选

cat /etc/X11/xorg.conf

下面是您需要的信息:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 331.113 (buildmeister@swio-display-x64-rhel04-03) Mon Dec 1 21:15:34 PST 2014


Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"

# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
taohunter
帖子: 1555
注册时间: 2012-03-31 3:29

Re: 無法調節筆記本屏幕亮度

#6

帖子 taohunter »

先备份好/etc/X11/xorg.conf(以防改动有问题),然后编辑该文件,找到这段:

代码: 全选

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
在EndSection前添加一行 Option "RegistryDwords" "EnableBrightnessControl=1",修改后的这一段是以下这个样子:

代码: 全选

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection
修改完成保存文件,然后重启系统再看看是否可以调节亮度了。
三年后终于回到16.04--稳定了!
friend43
帖子: 166
注册时间: 2015-01-07 16:41
系统: ubuntu 14.04

Re: 無法調節筆記本屏幕亮度

#7

帖子 friend43 »

taohunter 写了:先备份好/etc/X11/xorg.conf(以防改动有问题),然后编辑该文件,找到这段:

代码: 全选

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
在EndSection前添加一行 Option "RegistryDwords" "EnableBrightnessControl=1",修改后的这一段是以下这个样子:

代码: 全选

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection
修改完成保存文件,然后重启系统再看看是否可以调节亮度了。
非常感謝,終於可以調節了:)
回复