Fedora 21 Broadcomワイヤレスカードドライバをインストール
4490 ワード
先日、古いノートにFedora 21 workstation 32ビットバージョンをインストールし、ワイヤレスカードが使えないことを発見(Fedora節操高)したふりをして、ネットで調べて、fedoraフォーラムで解決策を見つけた.
原文リンク:クリックしてリンクを開く
ステップ3:
Step 1: Identify the chipset of the wireless device
第一歩:無線ネットワークカードの型番を識別し、端末の運行:lspci
私のこのフィードバックの最後の行為10:00.0 Network controller:Broadcom Corporation BCM 4312 802.11 b/g LP-PHY(rev 01)つまり無線LANカードの型番はBCM 4312です
Step 2: Choose the right driver
第二歩:适切な駆动を选んで、原文の选択表は以下の通りです:(私は怠けてversion 4それを见て、それから成功しました.)
Step 3: Install the driver
ステップ3:ドライバのインストール Install b43-fwcutter. This is the software package that does the extraction of the firmware from the proprietary driver.b 43-fwcutterをインストールします.このパッケージは、後のドライバファームウェアを解凍するために使用されます.
Code:
Determine which native driver is being used by the wireless card (b43 or b43legacy). The kernel is generally good about detecting a Broadcom wireless card and loading the correct driver module for it. The following terminal command will list the loaded kernel modules in alphabetical order. Look for b43 or b43legacy.无线LANカードのドライバを検出し、コマンドラインのリストはアルファベット順で表示されるので、B 43やB 43 legacy(英语では一般的ですが、大体そう訳しましょう.)
Code:
Do this step only if you need to install version 4 firmware for the b43 driver module. Copy and execute the following command lines one after the other in a Fedora terminal.これはb 43駆動にversion 4ファームウェアをインストールするcodeであり、端末が実行すればよい.
Code:
后ろに他のバージョンの駆动のインストールの说明があって、私は使っていないでひっくり返さないで、原帖は详しく说明しています.
原文リンク:クリックしてリンクを開く
ステップ3:
Step 1: Identify the chipset of the wireless device
第一歩:無線ネットワークカードの型番を識別し、端末の運行:lspci
私のこのフィードバックの最後の行為10:00.0 Network controller:Broadcom Corporation BCM 4312 802.11 b/g LP-PHY(rev 01)つまり無線LANカードの型番はBCM 4312です
Step 2: Choose the right driver
第二歩:适切な駆动を选んで、原文の选択表は以下の通りです:(私は怠けてversion 4それを见て、それから成功しました.)
lspci
|
Any of these listed?
4301
4303
4306
4309
4311
4312
4318
/ \
/ \
/ \
/ \
Yes No
/ \
/ \
/ \
lsmod 4310?
/ / \
/ / \
/ Yes No
b43 / \
loaded? / 43XG
/ \ ndiswrapper 4313,43224
/ No 4321,43225
/ \ 4322,43227
/ \ 4328,43228
Yes b43legacy / \
/ loaded? / \
/ / \ Yes No
/ Yes No / \
/ / \ / \
4306? / \ broadcom-wl 4320?
4311? Install 4311? (from lsusb
4318? version 3 4312? or other means)
/ \ firmware / \ / \
/ \ / \ / \
Yes No Yes No Yes No
/ \ / \ / \
/ \ / \ / \
b43-openfwwf Install broadcom-wl ndiswrapper b43-openfwwf ndiswrapper
or version 4 or
Install firmware rndis_wlan
version 4
firmware
Step 3: Install the driver
ステップ3:ドライバのインストール
Code:
su
yum install b43-fwcutter
Code:
lsmod | sort
Code:
wget http://downloads.openwrt.org/sources/broadcom-wl-4.150.10.5.tar.bz2
tar xjf broadcom-wl-4.150.10.5.tar.bz2
cd broadcom-wl-4.150.10.5/driver
su
b43-fwcutter -w /lib/firmware wl_apsta_mimo.o
后ろに他のバージョンの駆动のインストールの说明があって、私は使っていないでひっくり返さないで、原帖は详しく说明しています.