Archiv für den Monat: Februar 2017

Blinkende W-Lan LED unter Linux

Um die LED zum dauerhaften Leuchten zu bringen, ersteinmal schauen, welches Modul verwendet wird:

lsmod | grep wl

Dann entsprechend eine Konfiguration erstellen – Beispiele:

echo 'options iwlwifi led_mode=1' >> /etc/modprobe.d/wlan.conf
modprobe -r iwlwifi && modprobe iwlwifi

echo 'options iwlwifi led_mode=1' >> /etc/modprobe.d/iwldvm.conf
echo 'options iwlwifi led_mode=1' >> /etc/modprobe.d/iwlwifi.conf
modprobe -r iwldvm && modprobe iwldvm

Mit ein wenig austesten findet man schnell die Logik dahinter.