Hi nonstick,
Indeed, it is still a job in our todo list.
So you need to open a shell console (use Putty to do that)
Do these commands, to switch off the blue LED
- Code: Select all
echo none > /sys/class/leds/familybox:blue:sata/trigger
and to switch on the blue LED
- Code: Select all
echo default-on > /sys/class/leds/familybox:blue:sata/trigger
echo 255 > /sys/class/leds/familybox:blue:sata/brightness
.(Note: it seems that the sata behavior doesn't work well (blinking when read/write disk access)
You can create a shell file, to fix the LED behavior at booting (use the menu Cron scheduler-> boot jobs).
Click on 'Set up boot jobs' to initialize some system files.
Create a share 'fvdw' and now you should see a subfolder 'cron-boot'
Now put in this folder, the following file 'blue-led'
- Code: Select all
#!/bin/sh
echo none > /sys/class/leds/familybox:blue:sata/trigger
(if you want to switch off or replace this line by the 2 others to switch on)
Then return to boot jobs menu, you should see now in the jobs list your shell file. Select it and click on 'Enable/Disable boot jobs' to get the 'Enabled' status
if it works, could you check also these commands :
- Code: Select all
echo default-on > /sys/class/leds/familybox:blue:sata/trigger
echo 1 > sata
if the blue led is not 'On', do this additional command
- Code: Select all
echo 255 > /sys/class/leds/familybox:blue:sata/brightness
and report the blue behavior : if the blue LED is blinking when there are read/write disk access.