ubuntu开机屏幕发暗,设置开机自启动设置亮度

解决办法(不完美,至少比每次开机手工调亮度好。):

<span style="font-size:14px;">1.
代码:
sudo apt-get install xbacklight</span>
<span style="font-size:14px;">2.
代码:
gnome-session-properties</span>

3.

附件:

参考:http://www.maketecheasier.com/configure-screen-brightness-in-ubuntu/

另一种方法:

<span style="font-size:14px;">1.Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, runthe command below will give you the maximum level of your laptopbacklight:
代码:
cat/sys/class/backlight/acpi_video0/max_brightness

Mineis 100, so I can set backlight level from 0 to 100.</span>
<span style="font-size:14px;">2.Run the command below one by one. You’ll get the super userprivilege and open the /etc/rc.local file, a script executed at theend of each multiuser runlevel, with gedit editor.
代码:
sudo gedit /etc/rc.local
</span>
<span style="font-size:14px;">Add the line below before the last. Change the number 0 to the brightnesslevel you want.
引用:
echo0 > /sys/class/backlight/acpi_video0/brightness</span>

参考:http://ubuntuhandbook.org/index.php/2014/04/save-screen-brightness-settings-in-ubuntu-14-04/

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-10-24 09:55:41

ubuntu开机屏幕发暗,设置开机自启动设置亮度的相关文章

ubuntu设置开机默认进入界面及命令行下开启图像界面

前言 环境:ubuntu12.04 一. ubuntu设置默认开机界面 在网上查看了好几种方法,对于当前环境方便或者有用的方式是对/etc/default/grub文件进行设置. 1.默认开机命令行界面 file: /etc/default/grub文件中 GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"替换为GRUB_CMDLINE_LINUX_DEFAULT="text" 更新grub.cfg $sudo update-grub

Linux下Nginx、PHP、MySQL、Redis开机自启动设置

一.Nginx开机启动设置 1.在/etc/init.d/目录下创建脚本 vi /etc/init.d/nginx 2.更改脚本权限 chmod 775 /etc/init.d/nginx 3.编写脚本内容 #! /bin/shset -ePATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/binDESC="nginx daemon"NAME=nginxDAEMON=/usr/local/nginx/sbin/$N

linux下数据库实例开机自启动设置

linux下数据库实例开机自启动设置 1.修改/oratab [[email protected] ~]# vi/etc/oratab     --把N改为Y,如下提示 # This file is used by ORACLEutilities.  It is created by root.sh # and updated by the Database ConfigurationAssistant when creating # a database. # A colon, ':', is

CentOS 6下 Oracle11gR2 设置开机自启动

[1] 更改/etc/oratab [2] oracle用户profile文件中增加SID环境变量 [3] 创建启动Oracle的Init脚本 [4] 更改启动脚本权限 [5] 启动oracle数据库 [6] 关闭oracle数据库 [7] 设置oracle为开机自启动 原文地址: CentOS Oracle11gR2 设置开机自启动

ARM-Linux开机自启动设置-ok6410开发板

hdu 1163 Eddy's digital Roots Problem Description The digital root of a positive integer is found by summing the digits of the integer. If the resulting value is a single digit then that digit is the digital root. If the resulting value contains two

linux下数据库实例监听开机自启动设置

linux下数据库实例监听开机自启动设置 2016/5/16 zhanky 脚本介绍 在开始之前,我们先介绍一下几个会用到的脚本. oratab oratab文件是在创建数据库实例时建立的,在安装时使用root用户执行root.sh脚本后得到.(如果忘记也可以直接手动创建.) 在$ORACLE_HOME/bin目录下的$ORACLE_HOME/bin/dbstart和$ORACLE_HOME/bin/dbshut需要调用/etc/oratab文件,如果不存在,dbstart和dbshut将失败,

oracle11g在linux系统下开机自启动设置

oracle服务器一般来说最好是手动启动,这样碰到问题的话,可以现场解决,但是也担心有时候机器故障,自动重启后,为了快速恢复应用,需要自动开机启动oracle,而且发现在不同的os下,启动的设置都不太一样 1,centos操作系统下,可以这样设置 直接在rc.local里面添加 [[email protected] ~]# vim /etc/rc.local touch /var/lock/subsys/local su - oracle < lsnrctl start sqlplus / as

centos设置开机自启动

在CentOS系统下,主要有两种方法设置自己安装的程序开机启动. 1.把启动程序的命令添加到/etc/rc.d/rc.local文件中,比如下面的是设置开机启动httpd. 复制代码 #!/bin/sh # # This script will be executed *after* all the other init scripts. # You can put your own initialization stuff in here if you don't # want to do t

centos7源码编译安装httpd、加入systemctl并设置开机自启动

所需软件: apr-1.6.3.tar.gz (下载地址:http://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-1.6.3.tar.gz) apr-util-1.6.1.tar.gz (下载地址:http://mirrors.tuna.tsinghua.edu.cn/apache//apr/apr-util-1.6.1.tar.gz) httpd-2.4.29.tar.gz (下载地址:http://mirrors.shu.edu.cn/apac