Fazendo com que o Ubuntu reconheça uma placa de rede BCM43231 o que há com o terminal [duplicado]

2

Estou tentando ver se consigo fazer o Ubuntu reconhecer meu adaptador sem fio que é um wna3100 da Netgear que usa Broadcom BCM43231.

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

e quando eu coloco o mesmo comando que deu ao usuário Instalando os drivers wireless da Broadcom

não faz absolutamente nada e não é totalmente uma questão duplicada. Como mencionei, olhei em volta e tentei soluções que outras pessoas descobriram para trabalhar

    
por Kevin 31.03.2013 / 03:46

1 resposta

0

Isso pode ser uma causa perdida , já que outros desistiram e usaram um dispositivo alternativo.

Como instalar Netgear N-300 UAB adapter WNA3100 no Ubuntu 12.04 (FECHADO)

Não sabe como proceder ..

O driver STA não lista suportando o Broadcom BCM43231 .

O driver Linux Wireless também não: drivers Broadcom brcmsmac (PCIe) e brcmfmac (SDIO)

O método do driver do Windows (ndisrapper) pode funcionar : UbuntuForums > > precisa de ajuda com o Broadcom BCM43231

SourceForge refere-se apenas ao UbuntuForums (acima): NetGear, Inc. WNA3100 (v1) Wireless- N 300

Para remover / listar drivers mais antigos: (adaptado de driver sem fio híbrido Broadcom Linux > > README.txt )

Verifique se ssb, wl, b43 ou bcma estão carregados:

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

Bloqueie esses drivers para impedir que eles sejam carregados:

echo "blacklist ssb" >> /etc/modprobe.d/blacklist.conf
echo "blacklist b43" >> /etc/modprobe.d/blacklist.conf
echo "blacklist bcma" >> /etc/modprobe.d/blacklist.conf
    
por david6 01.04.2013 / 01:05