简洁的想法

仁爱、喜乐、和平、忍耐、恩慈、良善、信实、温柔、节制

Ubuntu Precise 12.04 无线网卡 慢 Broadcom Brcmsmac

| Comments

标题没看懂是正常的, 我写的全是关键字。

装12.04后, 无线网卡网速超级慢。 Google后发现解决方法

If the output of:

1
lspci -k | grep  brcmsmac

includes:

1
Kernel driver in use: brcmsmac

Then you have this problem too.

To solve this, you’ll need to install broadcom-sta driver and blacklist the default kernel one.

1
sudo apt-get install bcmwl-kernel-source

Then open /etc/modprobe.d/blacklist-bcm43.conf and add these lines:

1
2
blacklist brcmsmac
blacklist bcma

Restart and check that:

1
lspci -k | grep  wl

includes:

1
Kernel driver in use: wl

That should fix your wifi.
Hope ubuntu devs fix this and push out updates soon.

Comments