This is the second laptop I've tried to convert to Linux and the only thing that gives me trouble is the wireless.
-
1Sorry but what is your problem, edit your question adding relevant information about the problems involving your wireless setup. – Rodrigo Oliveira May 19 '13 at 23:56
1 Answers
I've had the same problem, and this is what I did:
The best way to fix this is to first use a wired connection. Plug in an ethernet cable and do this:
Open a terminal and type the following:
$ sudo apt-get install ndiswrapper-common
Find out what type of card you have. Just type in:
$ lspci -vvnn | grep 14e4
If you get BCM4311, BCM4312, BCM4313, BCM4321, BCM4322, BCM43224, BCM43225, **BCM43227, or **BCM43228...
Type this in a terminal:
$ sudo apt-get install bcmwl-kernel-source
If you get BCM4306/3, BCM4311, BCM4312, BCM4318, or BCM4320...
Type in this:
$ sudo apt-get install b43-fwcutter
$ sudo apt-get install firmware-b43legacy-installer (if wanted)
$ sudo modprobe -r b43 ssb wl (some things will give errors, don't worry)
$ sudo modprobe b43
$ sudo modprobe ndiswrapper
You should be able to now get ndiswrapper working, and I think that's about it. You can configure like normal from there...
Good luck ^-^

- 1
- 1