个人工具

UbuntuHelp:WifiDocs/Driver/bcm43xx/Feisty

来自Ubuntu中文

Oneleaf讨论 | 贡献2007年5月24日 (四) 14:20的版本 (新页面: {{From|https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx/Feisty}} {{Languages|UbuntuHelp:WifiDocs/Driver/bcm43xx/Feisty}} == Using Broadcom Wireless in Ubuntu Feisty 7.04 == As...)

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航, 搜索



Using Broadcom Wireless in Ubuntu Feisty 7.04

As of kernel 2.6.17, there is native support for some Broadcom chipsets. You have to use the fw-cutter tool to suck out the firmware code from a windows driver. The fw-cutter, or firmware cutter, or firmware extractor, does this.

This driver was included into the Linux kernel since kernel version 2.6.17-rc2.

There are two ways to use the Broadcom chipset with Linux:

  • Using ndiswrapper. This was the only way of getting support for these devices before Linux kernel 2.6.17-rc2. This will not work on PowerPC.
  • Using the native drivers in the kernel. This still requires extracting the firmware (the software that runs on the card itself) from one of a number of places using a tool called fwcutter. If you have bcm43xx hardware that is recognizable to the new kernel and you boot your PC with the Feisty installation CD, you will see error messages about the missing bcm43xx firmware, that show up on the console after the first boot splash screen but before X is started (or with the dmesg command). Following these instructions will fix this problem and you will have a working wireless card.

Forum Support for this Wiki

nickm wrote a howto on this forum for bcm43xx. If you have questions or need additional help please post there.

Using ndiswrapper

If your particular chipset is not supported by the bcm43xx driver in the kernel (as shown on the driver's website) you may need to install a driver using ndiswrapper. Depending on your chipset, you may even need to manually install a newer version of ndiswrapper.

Using the native drivers

Step 1: Obtaining the Firmware

The software that runs on the card itself is loaded onto the device by the driver prior to each use (this happens regardless of the operating system you are running this card on). Although the driver for the card is open source the firmware from the manufacturer is not.

The recommended firmware is wl_apsta.o which may be downloaded at http://boredklink.googlepages.com/wl_apsta.o. Running install-bcm43xx-firmware.sh as detailed below will do this automatically.

After enabling the Universe repository (see UbuntuHelp:Repositories), install the bcm43xx-fwcutter package.

sudo apt-get install bcm43xx-fwcutter

Links to various drivers come with the package. View them via

zless /usr/share/doc/bcm43xx-fwcutter/README.gz

and pick one to download, or copy the .sys file from the Windows Installation CD that came with your hardware (bcwl5.sys, for example).

To extract the firmware files and install them to the correct location, use the fwcutter application.

You may have to extract the .sys file before the next step: if you downloaded an .exe, try to unzip it. If that fails, try to cabextract it (install the cabextract package). The file of interest is .sys. If you downloaded a .o, it is the file of interest.

sudo bcm43xx-fwcutter -w /lib/firmware/`uname -r` <downloaded file>

The firmware files will be copied to /lib/firmware/2.6.20-X.

Where X is your kernel minor version (you can find out your kernel version by running uname -r ).

Alternatively you can run the provided script:

sudo /usr/share/bcm43xx-fwcutter/install_bcm43xx_firmware.sh

This will automatically download the firmware from the internet.

Firmware Packages

Note: This method may not download the latest firmware, try the previous method if this fails.

As an alternative to running the script, you can install the firmware files from a package. To automatically keep up to date, add this repository line to your /etc/apt/sources.list:

deb http://ubuntu.cafuego.net feisty-cafuego bcm43xx

and make sure apt knows about the GnuPG key used to sign the packages:

wget http://ubuntu.cafuego.net/969F3F57.gpg -O- | sudo apt-key add -

Then update your package listings and install the bcm43xx-firmware package:

sudo apt-get install bcm43xx-firmware

or download the package directly:

wget -c http://ubuntu.cafuego.net/pool/feisty-cafuego/bcm43xx/bcm43xx-firmware_1.3-1ubuntu2_all.deb

and then install it manually:

sudo dpkg -i bcm43xx-firmware_1.3-1ubuntu2_all.deb


Step 2: Loading module and checking card

Load the module:

sudo modprobe bcm43xx

The device gets loaded as either eth1/eth2. Find out which one it is by doing a

iwconfig

This should return the name of the interface as ethX. Check if you can scan for networks using

sudo iwlist ethX scan

Note: For some reason I could not scan for networks, the result of iwlist would be "no networks found", but when I entered the access point information manually it worked fine.

Step 3: Connecting to your network

Now, Network Manager is by default in Feisty and available on the upper right side of your screen, next to sound applet, etc... You can manage your connections directly by clicking left (to see infos, enable or disable networking) or right (to choose a network) on it.

If it doesn't work, you can use the following :


Go to System -> Administration -> Network (if using gnome). click on your wireless card, click Properties, click "enable connection" and enter your wireless network details. Or, if Network Manager is not yet installed, install the following package, with apt-get or Synaptic:-

sudo apt-get install network-manager
sudo apt-get install network-manager-gnome

Or, for kubuntu:-

sudo apt-get install network-manager
sudo apt-get install network-manager-kde

This will install another Network Icon next to your Network Connection icon. This will allow you to manage your wireless connections.

Everything should now work. It should also work every time you turn on your computer without further configuration. Remember that you can use gnome-networking or network-manager, but not both! You have to deconfigure your card in gnome-networking to use network-manager if you have already configured it in gnome-networking.

Step 4: Configuration of WPA

wpa_supplicant is usually installed by default, if not, install the package "wpasupplicant".

- Create the file /etc/wpa_supplicant.conf and insert the following:

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1
network={
ssid="<your accesspoints essid>"
scan_ssid=1
psk="<your wpa passphrase in plaintext>"
}

- Make this file readable only for root

sudo chmod go-rwx /etc/wpa_supplicant.conf

- Edit /etc/network/interfaces:

auto ethX
iface ethX inet dhcp
wireless-essid <your accesspoints essid>
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf

- Finally, test it by restarting the wireless interface

sudo ifdown ethX
sudo ifup ethX

Resources


Bcm43xx as ap

link found on it working as an ap