Ubuntu – VAIO laptop’s wireless indicator blinking when connected to access point

driversUbuntuubuntu-10.04wifi-driverwireless-networking

I have a VAIO laptop model VGN-C22GH. It has a built in wireless card with a Intel Centrino processor on his motherboard.

When using Ubuntu 10.04, the wireless indicator blinks violently. This symptom does not appear with earlier versions of Ubuntu like 9.10 or 8.10.

This leads me to believe that it is a driver issue. Is it something that I should worry about?

I have no idea where to look for, since this is a very limited scope problem. Should I report to Cannonical about this problem of mine??

Best Answer

You are right, it is a driver issue or rather it's a feature!

According to the documentation (which seems rather hard to find atm) (sudo modinfo -p iwlegacy the driver iwl_legacy has an option led_mode which controls exactly this behaviour (namely blinking on sending/receiving packets).

You can turn it off by creating a file called wifi.conf in /etc/modprobe.d (obviously as root) with the following content:

# Disable blinking
options iwlegacy led_mode=1

Then restart for the change to take effect.
You could also just rmmod and modprobe the iwlegacy and iwl3945 drivers, but that's a tad more complicated.

Related Question