無法調節筆記本屏幕亮度
-
- 帖子: 166
- 注册时间: 2015-01-07 16:41
- 系统: ubuntu 14.04
無法調節筆記本屏幕亮度
本人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: 無法調節筆記本屏幕亮度
...可以一開機時調整好...或者進入獨立顯卡的控制面板裡面調整...我的也是FN沒有用...
[论坛版主行为规定]+[PITIVI簡易教程]+[ubuntu裝迅雷]
[releases.ubuntu.com]+[cdimage.ubuntu.com]+[old-releases.ubuntu.com]
[學ubuntu必須拜讀懶蝸牛"笨兔兔的故事"=viewtopic.php?f=112&t=162040][Linux明日的希望在中國]
[releases.ubuntu.com]+[cdimage.ubuntu.com]+[old-releases.ubuntu.com]
[學ubuntu必須拜讀懶蝸牛"笨兔兔的故事"=viewtopic.php?f=112&t=162040][Linux明日的希望在中國]
-
- 帖子: 1555
- 注册时间: 2012-03-31 3:29
-
- 论坛版主
- 帖子: 18279
- 注册时间: 2009-08-04 16:33
Re: 無法調節筆記本屏幕亮度
如果你的筆電有 webcam 鏡頭 安裝 wildguppy 可以根據環境 自動調整螢幕亮度 (也可以手動調整)
http://www.noobslab.com/2014/02/adjust- ... guppy.html
http://news.softpedia.com/news/Adjust-t ... 9737.shtml
http://www.webupd8.org/2014/01/wildgupp ... ptops.html
http://www.ubuntugeek.com/wildguppy-adj ... cally.html
http://www.thecutestgeek.com/wildguppy# ... 1210436440
http://www.noobslab.com/2014/02/adjust- ... guppy.html
http://news.softpedia.com/news/Adjust-t ... 9737.shtml
http://www.webupd8.org/2014/01/wildgupp ... ptops.html
http://www.ubuntugeek.com/wildguppy-adj ... cally.html
http://www.thecutestgeek.com/wildguppy# ... 1210436440
-
- 帖子: 166
- 注册时间: 2015-01-07 16:41
- 系统: ubuntu 14.04
Re: 無法調節筆記本屏幕亮度
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
-
- 帖子: 1555
- 注册时间: 2012-03-31 3:29
Re: 無法調節筆記本屏幕亮度
先备份好/etc/X11/xorg.conf(以防改动有问题),然后编辑该文件,找到这段:
在EndSection前添加一行 Option "RegistryDwords" "EnableBrightnessControl=1",修改后的这一段是以下这个样子:
修改完成保存文件,然后重启系统再看看是否可以调节亮度了。
代码: 全选
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
EndSection
代码: 全选
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "RegistryDwords" "EnableBrightnessControl=1"
EndSection
三年后终于回到16.04--稳定了!
-
- 帖子: 166
- 注册时间: 2015-01-07 16:41
- 系统: ubuntu 14.04
Re: 無法調節筆記本屏幕亮度
非常感謝,終於可以調節了:)taohunter 写了:先备份好/etc/X11/xorg.conf(以防改动有问题),然后编辑该文件,找到这段:在EndSection前添加一行 Option "RegistryDwords" "EnableBrightnessControl=1",修改后的这一段是以下这个样子:代码: 全选
Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" EndSection
修改完成保存文件,然后重启系统再看看是否可以调节亮度了。代码: 全选
Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" Option "RegistryDwords" "EnableBrightnessControl=1" EndSection