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

代码区

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

adm

要安装无线驱动程序:

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

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

您需要先通过LAN接口连接到Internet,然后再继续。

  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

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章