Configure o Atheros AR9285 sem fio no Gentoo

4

Meu laptop tem uma placa sem fio Atheros AR9285. Seguindo a seção "Configuração de Rede" no manual do Gentoo, escolhi o módulo ath9k. Os módulos parecem estar carregados corretamente:

# lsmod | grep ath
ath9k                  72172  0 
ath9k_common            2345  1 ath9k
mac80211              146807  2 ath9k,ath9k_common
ath9k_hw              213153  2 ath9k,ath9k_common
ath                     8652  2 ath9k,ath9k_hw
cfg80211              112782  4 ath9k,ath9k_common,mac80211,ath

E a interface também aparece no ifconfig:

wlan0     Link encap:Ethernet  HWaddr 00:22:43:61:a2:f0  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

No entanto, não consigo fazer uma verificação de rede:

# iwlist wlan0 scanning
wlan0     Interface doesn't support scanning.

E a interface não parece ser reconhecida:

# iwconfig wlan0
wlan0     no wireless extensions.

O que eu posso tentar fazer isso funcionar?

PS: Eu também tenho o Ubuntu neste laptop e o wireless está funcionando bem.

    
por phunehehe 13.11.2010 / 18:25

2 respostas

5

Eu obtive a solução nos Fóruns do Gentoo . Acabou sendo um kernel mal configurado. Espero que ajude quem tem o mesmo problema:)

Aqui está a configuração do kernel que funciona (da postagem que eu fiz o link acima):

[*] Networking support  --->
    -*-   Wireless  --->
        <*>   cfg80211 - wireless configuration API                                                                                                                  
        [*]     enable powersave by default
        [*]     cfg80211 wireless extensions compatibility
        [*]   Wireless extensions sysfs files
        <*>   Common routines for IEEE802.11 drivers
        <*>   Generic IEEE 802.11 Networking Stack (mac80211)
              Default rate control algorithm (Minstrel)  --->
        -*-   Enable LED triggers

Device Drivers  --->
    [*] Network device support  --->
        [*]   Wireless LAN  --->
            <*>   Atheros Wireless Cards  --->
                <*>   Atheros 802.11n wireless cards support
    
por 07.12.2010 / 01:51
1

Se você usa o DE, é melhor usar o NetworkManager ( descrição da configuração do NM no Gentoo ).

Caso contrário, você precisa editar o arquivo de configuração de rede ( /etc/conf.d/net ):

config_wlan0=("dhcp")
modules=("iwconfig")
preferred_aps=("WI-FI_NAME")
config_WI-FI_NAME=("dhcp")

e, em seguida, execute /etc/init.d/net.wlan0 start para iniciá-lo.

    
por 14.11.2010 / 16:27