让 Ubuntu 识别 BCM43231 网卡,终端出了什么问题

让 Ubuntu 识别 BCM43231 网卡,终端出了什么问题

我正在尝试看看是否可以让 ubuntu 识别我的无线适配器,它是使用 Broadcom BCM43231 的 Netgear wna3100。

This file lists those modules which we don't want to be loaded by
# alias expansion, usually so some other driver will be loaded for the
# device instead.

# evbug is a debug tool that should be loaded explicitly
blacklist evbug

# these drivers are very simple, the HID drivers are usually preferred
blacklist usbmouse
blacklist usbkbd

# replaced by e100
blacklist eepro100

# replaced by tulip
blacklist de4x5

# causes no end of confusion by creating unexpected network interfaces
blacklist eth1394

# snd_intel8x0m can interfere with snd_intel8x0, doesn't seem to support much
# hardware on its own (Ubuntu bug #2011, #6810)
blacklist snd_intel8x0m

# Conflicts with dvb driver (which is better for handling this device)
blacklist snd_aw2

# causes failure to suspend on HP compaq nc6000 (Ubuntu: #10306)
blacklist i2c_i801

# replaced by p54pci
blacklist prism54

# replaced by b43 and ssb.
blacklist bcm43xx

# most apps now use garmin usb driver directly (Ubuntu: #114565)
blacklist garmin_gps

# replaced by asus-laptop (Ubuntu: #184721)
blacklist asus_acpi

# low-quality, just noise when being used for sound playback, causes
# hangs at desktop session start (Ubuntu: #246969)
blacklist snd_pcsp

# ugly and loud noise, getting on everyone's nerves; this should be done by a
# nice pulseaudio bing (Ubuntu: #77010)
blacklist pcspkr

# EDAC driver for amd76x clashes with the agp driver preventing the aperture
# from being initialised (Ubuntu: #297750). Blacklist so that the driver
# continues to build and is installable for the few cases where its
# really needed.
blacklist amd76x_edac

当我输入相同的命令时,用户 安装 Broadcom 无线驱动程序

它完全没有作用,也不是完全重复的问题。正如我提到的,我已经四处寻找并尝试了其他人发现有效的解决方案。

答案1

这可能是丢失的原因,因为其他人已经放弃并使用了替代设备。

如何在 Ubuntu 12.04 上安装 Netgear N-300 UAB 适配器 WNA3100(关闭)

不确定如何继续..


星空卫士驱动程序未列出支持 BroadcomBCM43231

Linux 无线驱动程序也不支持:Broadcom brcmsmac(PCIe) 和 brcmfmac(SDIO) 驱动程序

Windows 驱动程序(ndisrapper)方法可能会有用UbuntuForums >> 需要 Broadcom BCM43231 方面的帮助

SourceForge 只是指 UbuntuForums(上文):NetGear 公司 WNA3100(v1) 无线-N 300


要删除或将较旧的驱动程序列入黑名单:(改编自Broadcom Linux 混合无线驱动程序 >> README.txt

检查是否加载了 ssb、wl、b43 或 bcma:

lsmod | grep "ssb\|wl\|b43\|bcma"

将这些驱动程序列入黑名单,以防止它们加载:

echo "blacklist ssb" >> /etc/modprobe.d/blacklist.conf
echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
echo "blacklist bcma" >> /etc/modprobe.d/blacklist.conf

相关内容