Stop the blinking wireless LED in Linux

I’ve recently had some problems with the wireless LED of my laptop in Linux. I have a Intel WiFi Link 5100 but this also applies to other Intel WiFi cards.  The LED that indicates that my WiFi is enabled or not, was blinking every time the WiFi card transmitted or received data. This seems like some special feature Intel introduced but it is really very annoying! Luckily you can stop the blinking, but this depends on your kernel version so make sure to look into the right section. I’m posting solutions for Linux Mint (Debian), Ubuntu and Arch Linux but I think this will also work for other distros.

Kernel version lower than 3.2.0

Put this text

options iwlagn led_mode=1

in the following file (possibly you have to create the file):

  • Linux Mint (Debian) or Ubuntu: /etc/modprobe.d/iwlagn.conf
  • Arch Linux: /etc/modprobe.d/modprobe.conf

Now restart your system or reload the WiFi driver using:
sudo -i
modprobe -r iwlagn && modprobe iwlagn

If that doesn’t work, you can try putting the following in the same file:

options iwl_legacy led_mode=1

Kernel version greater or equal to 3.2.0

Put this text

options iwlwifi led_mode=1

in the following file (possibly you have to create the file):

  • Linux Mint (Debian) or Ubuntu: /etc/modprobe.d/wlan.conf
  • Arch Linux: /etc/modprobe.d/modprobe.conf

Now restart your system or reload the WiFi driver using:
sudo -i
modprobe -r iwlwifi && modprobe iwlwifi

If that doesn’t work, you can try putting the following in the same file:

options iwlegacy led_mode=1

This fixed stopped the blinking on my laptop and I hope it also works for you!

About Tom Desair

I'm a Computer Science student and I live in Belgium. I'm passionate about technology, open source and cloud computing and in my spare time I'm an enthusiastic camp leader.
This entry was posted in Linux and tagged , . Bookmark the permalink.

11 Responses to Stop the blinking wireless LED in Linux

  1. trk says:

    Thanks, this helped greatly on a HP DV7 laptop. The blinking wifi indicator was driving me mad.

  2. TexanBrit says:

    Thanks for saving my sanity. This fixed an HP NC6400.

  3. tolga says:

    Thanks a lot Tom.
    It worked for linux mint.14 @ hp 8540p laptop

  4. Chris says:

    Thanks, worked like a charm on my pavilion DM4 running Mint 14!

  5. Jimmy says:

    OMG! Thank you so much! worked perfectly on my hp DV7 on Mint 14 Cinnamon. I cannot believe Intel thought that was a good idea lol.

  6. Peter Siegert says:

    Thanks, works perfekt on HP 8510W Ubuntu 12

Leave a Reply