O Ubuntu 14.10 pode listar o Wi-Fi, mas não conecta

3

Tenho o Ubuntu instalado no meu SSD e movi-o para inicializar diferentes PCs. Eu estava usando no meu laptop que tem um cartão Broadcom embutido e estava funcionando como esperado. Um dia, parou de funcionar. O mais estranho é que, alguns dias atrás, o Bluetooth também parou de funcionar e eu pluguei um dongle para que funcionasse. Era um laptop antigo e eu removi o SSD e instalei o Windows 8. O Wi-Fi e o Bluetooth começaram a funcionar.

Então eu coloco o SSD de volta na minha área de trabalho e a placa PCIe Atheros AR9485, que estava trabalhando anteriormente, também não conectava. O problema é o mesmo para o laptop e a área de trabalho. Eu posso ver SSIDs no widget Network Manager, mas a conexão não funciona. Ele tenta e desiste no final.

Veja algumas informações úteis:

$ lspci -nnk | grep -iA2 net
  01:00.0 Network controller [0280]: Qualcomm Atheros AR9485 Wireless Network Adapter [168c:0032] (rev 01)
  Subsystem: Qualcomm Atheros Device [168c:3118]
  Kernel driver in use: ath9k
$ rfkill list all
  0: phy0: Wireless LAN
  Soft blocked: no
  Hard blocked: no
  1: hci0: Bluetooth
  Soft blocked: no
  Hard blocked: no
$ dmesg | tail -n 20
  [  536.278326] wlan0: direct probe to 14:b9:68:63:d6:80 (try 1/3)
  [  536.480236] wlan0: direct probe to 14:b9:68:63:d6:80 (try 2/3)
  [  536.684206] wlan0: direct probe to 14:b9:68:63:d6:80 (try 3/3)
  [  536.888159] wlan0: authentication with 14:b9:68:63:d6:80 timed out
  [  547.642137] wlan0: authenticate with 14:b9:68:63:d6:80
  [  547.655433] wlan0: direct probe to 14:b9:68:63:d6:80 (try 1/3)
  [  547.857571] wlan0: direct probe to 14:b9:68:63:d6:80 (try 2/3)
  [  548.061490] wlan0: direct probe to 14:b9:68:63:d6:80 (try 3/3)
  [  548.265447] wlan0: authentication with 14:b9:68:63:d6:80 timed out
  [  783.833363] perf interrupt took too long (2508 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
  [ 1151.862130] wlan0: authenticate with 14:b9:68:63:d6:80
  [ 1151.875359] wlan0: direct probe to 14:b9:68:63:d6:80 (try 1/3)
  [ 1152.077243] wlan0: direct probe to 14:b9:68:63:d6:80 (try 2/3)
  [ 1152.281196] wlan0: direct probe to 14:b9:68:63:d6:80 (try 3/3)
  [ 1152.485033] wlan0: authentication with 14:b9:68:63:d6:80 timed out
  [ 1163.244460] wlan0: authenticate with 14:b9:68:63:d6:80
  [ 1163.257626] wlan0: direct probe to 14:b9:68:63:d6:80 (try 1/3)
  [ 1163.459545] wlan0: direct probe to 14:b9:68:63:d6:80 (try 2/3)
  [ 1163.663510] wlan0: direct probe to 14:b9:68:63:d6:80 (try 3/3)
  [ 1163.867406] wlan0: authentication with 14:b9:68:63:d6:80 timed out
    
por frontsideair 09.03.2015 / 22:24

1 resposta

2

Eu suspeito que há um problema com o driver ath9k que foi corrigido em versões posteriores do kernel. Sugiro que instalemos o pacote de drivers ath9k da versão do kernel 3.19. Com uma conexão temporária de internet, abra um terminal e faça:

sudo apt-get install build-essential linux-headers-generic
wget https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v3.19-rc1/backports-3.19-rc1-1.tar.gz
tar -zxvf backports-3.19-rc1.tar.gz
cd backports-3.19-rc1
make defconfig-ath9k
make
sudo make install
sudo depmod -a

Reinicie e diga-nos se existe alguma melhoria.

Se o Update Manager instalar uma imagem linux posterior, após a reinicialização solicitada, você deverá recompilar:

cd backports-3.19-rc1
make clean
make defconfig-ath9k
make
sudo make install
sudo depmod -a

Em seguida, reinicialize para carregar o driver mais recente.

Você também pode tentar um parâmetro de driver:

sudo -i
echo "options ath9k nohwcrypt=1"  >  /etc/modprobe.d/ath9k.conf
exit

Além disso, verifique se o roteador está definido como WPA2-AES e não como TKIP. Reinicie.

    
por chili555 09.03.2015 / 22:56