Драйвер принтера для Konica Minolta Magicolor 1600W?

Измените уровень яркости по умолчанию в Ubuntu 14. 04 LTS / Brightness сбрасывается до Maximum на каждом перезапуске на Ubuntu 14.04 LTS

Вот что я узнал.

В моем случае У меня были две папки.

И когда я изменил уровень яркости по умолчанию, потребовалось изменение из файла в папке Изменение уровня яркости по умолчанию в Ubuntu 14. 04 LTS / Brightness сбрасывается Максимум для каждого перезапуска на Ubuntu 14.04 LTS . т. е. со второй строки кода.

Вот код, который будет полезен для установки уровня яркости по умолчанию для Ubuntu 14.04 LTS.

#!/bin/sh -e
#rc.local
#This script is executed at the end of each multiuser runlevel.
#Make sure that the script will "exit 0" on success or any other
#Value on error.
#In order to enable or disable this script just change the execution
#bits.
#By default this script does nothing.
#
#
#
#if you are changing the default brightness in Ubuntu 14.4 LTS
#the brightness under the folder acpi_video0 is important.
#Because brightness is set from that folder and not from intel_backlight
#(in case of my PC. It may very in others)
#That means you can omit the first echo line.
#However the command lines are given if any one has some problem and doesnot
#have the acpi_video0 folder
echo 1020 > /sys/class/backlight/intel_backlight/brightness
#Under the above given address the range of brightness is from 0 to 4648.
echo 3 > /sys/class/backlight/acpi_video0/brightness
#Under the above given address the range of brightness is from 0 to 7.
exit 0
1
задан 20 December 2012 в 18:58

0 ответов

Другие вопросы по тегам:

Похожие вопросы: