以上をまとめると、以下3行のコマンドで両方のLEDの消灯が実現できる。
■ACT LEDを消灯させる
$ echo none | sudo tee /sys/class/leds/led0/trigger
■PWR LEDを消灯させる
$ echo none | sudo tee /sys/class/leds/led1/trigger
$ echo 0 | sudo tee /sys/class/leds/led1/brightness
■PWR LEDを消灯させる
$ echo none | sudo tee /sys/class/leds/led1/trigger
$ echo 0 | sudo tee /sys/class/leds/led1/brightness
再起動後も消灯する方法:
上記の消灯設定は、本体再起動をするとリセットされてしまうので再起動時にも消灯したい場合は、"rc.local"ファイルにコマンドを追記すること
$ cat /etc/rc.local
---------------------------------------------------------------------------------------------------------------------------
#!/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.
# Print the IP address
_IP=$(hostname -I) || true
if [ "$_IP" ]; then
printf "My IP address is %s\n" "$_IP"
fi
# Turn off LED(以下を追記する)
echo none | sudo tee /sys/class/leds/led0/trigger
echo none | sudo tee /sys/class/leds/led1/trigger
echo 0 | sudo tee /sys/class/leds/led1/brightness
------------------------------------------------------------------------
0 件のコメント:
コメントを投稿