Linux Mint 16 Petra 中的 Broadcom 无线和 Realtec 音频驱动程序问题

Linux Mint 16 Petra 中的 Broadcom 无线和 Realtec 音频驱动程序问题

如何使用命令行在 Linux mint 中安装无线和音频驱动程序?

答案1

安装无线驱动程序:

  1. 从管理中打开驱动程序管理器
  2. 选择bcmwl-kernal-source
  3. 单击“应用更改”(需要几分钟,取决于您的网络速度)

安装无线驱动程序的另一种方法:

在继续操作之前,您需要通过 LAN 接口连接到互联网。

  1. 成功安装 LMDE 后,您必须先更新它,然后再安装驱动程序。

    sudo apt-get update && sudo apt-get upgrade
    
  2. 更新成功后,我们现在可以为我们的 Broadcom 无线网卡安装所需的驱动程序:

    sudo apt-get install b43-fwcutter firmware-b43-installer
    

    您所要做的就是等待安装完成,然后就能够使用 Broadcom wifi 卡了。

如果您尝试在配备低功耗 b43 芯片组的上网本上安装驱动程序,请遵循以下更新:

sudo apt-get install b43-fwcutter firmware-b43-lpphy-installer

使用最新内核更新 LMDE 导致 Broadcom 无线连接出现问题。为了恢复连接,我不得不使用另一组命令。

sudo -i apt-get install module-assistant wireless-tools broadcom-sta-common broadcom-sta-source
m-a a-i broadcom-sta
echo "blacklist brcm80211" >>/etc/modprobe.d/broadcom-sta-common.conf
update-initramfs -u -k $(uname -r)
modprobe -r b44 b43 b43legacy ssb brcm80211
modprobe wl
iwconfig

相关内容