Broadcom BCM94360系列网卡Linux(Ubuntu/Fedora)驱动安装总结

一、Ubuntu下安装

这个不用安装了,人家系统做好支持了。

System->Administration->Hardware Drivers
Choose the Broadcom STA wireless driver
Activate

如果没有这个选项,那么在shell中执行:

sudo apt-get update
sudo apt-get --reinstall install bcmwl-kernel-source

重启后,重复上一步骤激活驱动。我对Ubuntu14.04中文版进行测试, 发现默认没有装这个驱动,重复上述代码重启后成功。

二、Fedora下安装

现在shell中获得管理员权限 su -,提示输入密码后在shell中执行:

  1. Enable rpmfusion repo 添加源
yum localinstall --nogpgcheck \
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
yum localinstall --nogpgcheck http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  1. 更新系统
yum update
  1. 重启
reboot

重启后还是打开终端获得管理员权限,见 1.
4. 安装网卡驱动

yum install kernel-devel akmod-wl
  1. 如果还是没有wifi,手动加载
# Make sure the module built for your kernel
sudo akmods

# See if the module is loaded (if no results, it's not)
sudo lsmod | grep wl

# Manually load the module
sudo modprobe wl
  1. 测试成功
posted @ 2017-10-25 18:15  Aiden.Z  阅读(1920)  评论(0编辑  收藏  举报