Como faço meu adaptador sem fio Atheros AR9285 funcionar?

4

Hoje eu instalei o Ubuntu 11.10 x64 no meu Lenovo B570 usando o wubi.exe. Após a inicialização, descobri que não conseguia ativar a rede sem fio. Eu tenho uma placa sem fio Atheros AR9285.

Percorri o guia de solução de problemas do Ubuntu, e a saída sugere que o cartão tenha um driver, mas ele simplesmente não liga! (Vou postar isso em breve.)

linuxwireless.org parece ter um arquivo de drivers chamado compat-wireless, que supostamente resolve esse problema, mas eu sou novo no Linux e não sei como instalá-los.

O LBM também pode ser uma solução, mas estou com dificuldades para baixar e instalar o pacote.

Já houve várias postagens sobre problemas de driver com este cartão antes, mas todas as soluções pressupõem acesso à Internet com fio ou simplesmente não as entendo.

Qualquer ajuda será muito apreciada!

O que eu tentei até agora:

  • Instalado os módulos Backport do Linux hoje. Wifi ainda não está funcionando.
  • Compatível sem fio instalado. Wifi ainda não está funcionando.

Informações adicionais:

nm-tool

NetworkManager Tool 

State: disconnected 

- Device: wlan0 ---------------------------------------------------------------- 
  Type:              802.11 WiFi 
  Driver:            ath9k 
  State:             unavailable 
  Default:           no 
  HW Address:        74:DE:2B:84:86:A2 

  Capabilities: 

  Wireless Properties 
    WEP Encryption:  yes 
    WPA Encryption:  yes 
    WPA2 Encryption: yes 

  Wireless Access Points

sudo lshw -c rede

*-network DISABLED      
       description: Wireless interface 
       product: AR9285 Wireless Network Adapter (PCI-Express) 
       vendor: Atheros Communications Inc. 
       physical id: 0 
       bus info: pci@0000:02:00.0 
       logical name: wlan0 
       version: 01 
       serial: 74:de:2b:84:86:a2 
       width: 64 bits 
       clock: 33MHz 
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless 
       configuration: broadcast=yes driver=ath9k driverversion=3.0.0-12-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn 
       resources: irq:17 memory:d0500000-d050ffff

sudo lspci | grep Atheros

02:00.0 Network controller: Atheros Communications Inc. AR9285 Wireless Network Adapter (PCI-Express) (rev 01) </pre>

<pre>sudo lsmod |grep ath 
ath9k                 127538  0 
mac80211              310872  1 ath9k 
ath9k_common           13839  1 ath9k 
ath9k_hw              312866  2 ath9k,ath9k_common 
ath                    24067  2 ath9k,ath9k_hw 
cfg80211              199587  3 ath9k,mac80211,ath 

sudo iwconfig

lo        no wireless extensions. 

eth0      no wireless extensions. 

wlan0     IEEE 802.11bgn  ESSID:off/any  
          Mode:Managed  Access Point: Not-Associated   Tx-Power=14 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off 
          Encryption key:off 
          Power Management:off

localize -i ath9k

/lib/modules/3.0.0-12-generic/kernel/drivers/net/wireless/ath/ath9k 
/lib/modules/3.0.0-12-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k.ko 
/lib/modules/3.0.0-12-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k_common.ko 
/lib/modules/3.0.0-12-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k_htc.ko 
/lib/modules/3.0.0-12-generic/kernel/drivers/net/wireless/ath/ath9k/ath9k_hw.ko 
/usr/src/linux-headers-3.0.0-12/drivers/net/wireless/ath/ath9k 
/usr/src/linux-headers-3.0.0-12/drivers/net/wireless/ath/ath9k/Kconfig 
/usr/src/linux-headers-3.0.0-12/drivers/net/wireless/ath/ath9k/Makefile 
/usr/src/linux-headers-3.0.0-12/include/linux/ath9k_platform.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/ahb.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/common.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/debugfs.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/htc 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/htc.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/hw.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/pci.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/rate 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/htc/debugfs.h 
/usr/src/linux-headers-3.0.0-12-generic/include/config/ath9k/rate/control.h 
/usr/src/linux-headers-3.0.0-12-generic/include/linux/ath9k_platform.h

Depois de algumas pesquisas, tenho certeza de que o driver ath9k da Atheros não vale nada e precisa ser substituído. Desde que eu já tentei isso com LBM e compat-wireless, vou procurar por uma versão mais antiga do driver ath9k. Eu não tenho certeza do que MadWifi é, mas vale a pena investigar também. Também está procurando desativar o bloco de software.

Alguém já não resolveu este problema?

    
por kill-9 16.01.2012 / 09:23

1 resposta

2

Isso foi corrigido com:

sudo modprobe -r acer-wmi
cd /etc/modprobe.d
sudo nano blacklist.conf

Em seguida, adicione a lista negra acer-wmi como uma nova linha no final do arquivo.

que foi publicado anterior por fossfreedom

Obrigado fossfreedom !!

    
por kill-9 19.01.2012 / 09:58