Ubuntu – Broadcom 4313 Signal strength very low on an HP Pavilion dv4

11.10broadcom

I have a HP pavilion dv4 4141US laptop running fresh ubuntu 11.10. This laptop has a broadcom 4313gn chipset for the network card. The network card is using the brcmsmac driver. Which, I heard else where on askUbuntu that its the best driver to be using for this card.

I can connect to my network, however I have extremely low network signal. Right now I am right in front of the router, and I only get 72%. If i go to the room directly behind the router's wall, i get no signal, where as with windows 7 I get a nice 70% percent.

UPDATE: I use WEP at home and an open wireless connection at work. Both have same result. Both are completely different routers. Also you G

What can i do?

Best Answer

Bug Reporting

According to this there is a report of the similar kernel version as used by oneiric having the same issue...

It is probably worth experimenting with different kernels to see if this resolves your issue - see the possible solutions below.

You should file a kernel launchpad bug report so that the Canonical Kernel maintainers are aware of the issue - possibly they may backport a patch from the latest release candidate in a future kernel build.

When filing the bug-report, they will ask you to test the latest mainline kernel. To do this, following the instructions below.

to install a kernel

Navigate to this website and download the files that look like the following:

headers_amd64.deb, headers_all.deb & image_amd64.deb if using 64bit Ubuntu

headers_i386.deb, headers_all.deb & image_i386.deb if using 32bit Ubuntu

Install the packages downloaded using the terminal command:

sudo dpkg -i linux*.deb

Reboot.

When booting press SHIFT to display your GRUB - this screen lists your kernels - you can boot with any kernel listed including "older linux" option for old kernels.


Possible Solutions

  1. Look at the kernel mainline and choose a newer kernel - preferably one that has the oneiric name associated with it - however you could also try the very latest (but probably unstable) 2.6.32 release candidates.

  2. Looking closely at that bug-report, early in the thread the OP reported that his issue was due to a hidden SSID. Possibly you can check in your router settings whether you are using a visible SSID or a hidden SSID.

  3. Also, the OP reported that he didn't have his particular issue with the older 2.6.39.2 kernel. You could also try that by downloading this from the launchpad mainline and installing this using the instructions above. Remember to booting into the older kernel by selecting it from GRUB.

Tidying up

If this doesn't workout for you - remove this kernel using my answer in this question

If the newer/older kernel works for you then you can use my answer here to "fix" the kernel i.e. to always boot into the newer/older kernel.


Conclusion

As we have discussed - trying all of the above, booting with the older 2.6.39.2 kernel seems to provide you with the best solution.

Related Question