|
新安装F13 用的是BCM 4306的网卡,系统自带的驱动B43能使用,但是有经常自动断线的情况,用YUM 安装KMOD-WL 驱动后,网卡无法使用。
按以下方法成功安装驱动
Fedora
With Fedora 10 and above, You need to install the b43-fwcutter tool (which will extract firmware from the Windows driver) and wget:
切换行号显示
1 su -
2 yum install b43-fwcutter wget
Next, download the Windows driver:
切换行号显示
1 wget http://downloads.openwrt.org/sou ... -4.150.10.5.tar.bz2
Next decompress, extract and copy firmware to /lib/firmware directory.
切换行号显示
1 tar xjf broadcom-wl-4.150.10.5.tar.bz2
2 cd broadcom-wl-4.150.10.5/driver
3 b43-fwcutter -w /lib/firmware/ wl_apsta_mimo.o
然后modprobe b43
成功加载驱动。但系统无法自动加载。搜索网上,改/etc/rc.local 在里面加入modprobe b43 也不能加载驱动。
后在/etc/modprobe.conf 里加入alias wlan0 b43 语句,后每次开机都可以自动加载了
网上资料较少,希望对大家有所帮助
:daniu: |
|