Disable LED lights raspberry

Hey folks,

i am completely new into working with a Raspberry.
I bought a Raspberry + Hifiberry DAC2 Pro for my hifi system.
Is there a way to disable the LEDs of the Raspberry and the Dac?

Greetings
Dave

For the DAC it is not possible (unless your recompiling the kernel), for the rPi:
Add these lines to the /boot/userconfig.txt. Since you didn’t mention which rPi…
rPi3:

# Turn off Power LED
dtparam=pwr_led_trigger=default-on
dtparam=pwr_led_activelow=off
# Turn off Activity LED
dtparam=act_led_trigger=none
dtparam=act_led_activelow=off
# Turn off Ethernet ACT LED
dtparam=eth_led0=14
# Turn off Ethernet LNK LED
dtparam=eth_led1=14

rpi4:

# Turn off Power LED
dtparam=pwr_led_trigger=default-on
dtparam=pwr_led_activelow=off
# Turn off Activity LED
dtparam=act_led_trigger=none
dtparam=act_led_activelow=off
# Turn off Ethernet ACT LED
dtparam=eth_led0=4
# Turn off Ethernet LNK LED
dtparam=eth_led1=4
3 Likes