您的位置:首页 > 运维架构 > Linux

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

2017-10-18 18:36 2883 查看
一、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中执行:

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


更新系统

yum update


重启

reboot


重启后还是打开终端获得管理员权限,见 1.

4. 安装网卡驱动

yum install kernel-devel akmod-wl


如果还是没有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


测试成功
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: