zoukankan      html  css  js  c++  java
  • [Ubuntu] ThinkPad T410i linux下如何调节亮度

    本本是ThinkPad T410i,安装了ubuntu 10.10之后,发现调节屏幕亮度的功能没了,每次调节亮度之后要重启才能够生效,而且下次重启之后,就又失效了。

    强大的google帮助了我,我帖一下我的解决方法。 

    在终端一下输入下面命令,修改xorg.conf

    sudo vim /etc/X11/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"

    EndSection 

     在Section "Device"里面加多一行

    Option  "RegistryDwords" "EnableBrightnessControl=1",

    修改后如下

    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 


    然后保存,重启之后你就会发现,可以在ubuntu下面调节屏幕亮度了! 

  • 相关阅读:
    无向图的双连通分量
    以管理员身份运行软件cmd命令
    异或
    递推求解DAG最长路径长度及最长路径条数
    有向图转强连通图最少加边数
    Tarjan强连通分量(scc)
    uni封装request请求
    生命周期
    页面路由,以及传值
    WXS 模块
  • 原文地址:https://www.cnblogs.com/davidhhuan/p/1977754.html
Copyright © 2011-2022 走看看