Como faço para que minha placa wireless Atheros AR9485 funcione no Ubuntu Server 16.04?

0

Então eu instalei recentemente o Ubuntu Server 16.04 em um computador antigo para configurar como um servidor. Enquanto ele estava passando pelo processo de configuração, ele estava conectado, mas quando eu inicializei pela primeira vez, ele não se conectou. Então olhei em volta por um tempo e li as postagens do Ask Ask do Ubuntu procurando a resposta. Eu encontrei muitos posts, mas nenhum deles resolveu o meu problema.

Eu corri lshw -C network dando a saída:

 *-network DISABLED
   description: Ethernet interface
   product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:03:00.0
   logical name: enp3s0
   version: 07
   serial: 40:a8:f0:3c:ef:09
   size: 10Mbit/s
   capacity: 100Mbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s
   resources: irq:33 ioport:e000(size=256) memory:d0804000-d0804fff memory:d0800000-d0803fff
*-network
   description: Wireless interface
   product: AR9485 Wireless Network Adapter
   vendor: Qualcomm Atheros
   physical id: 0
   bus info: pci@0000:04:00.0
   logical name: wlp4s0
   version: 01
   serial: b8:ee:65:9e:42:99
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
   configuration: broadcast=yes driver=ath9k driverversion=4.4.0-116-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
   resources: irq:39 memory:fea00000-fea7ffff memory:fea80000-fea8ffff

Costumava dizer DESABILITADO para o dispositivo AR9485, mas eu corri ifconfig wlp4s0 up e isso corrigiu isso.

Eu também executei lsmod | grep ath9k dando a saída:

ath9k                 147456  0
ath9k_common           36864  1 ath9k
ath9k_hw              479232  2 ath9k_common,ath9k
ath                    32768  3 ath9k_common,ath9k,ath9k_hw
mac80211              737280  1 ath9k
cfg80211              565248  4 ath,ath9k_common,ath9k,mac80211

Eu também instalei o rfkill (eu tive que baixá-lo manualmente e trazê-lo em um pendrive) e executei rfkill list all dando a saída:

0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

Em seguida, executei iwconfig e obtive:

wlp4s0    IEEE 802.11bgn  ESSID:off/any  
    Mode:Managed  Access Point: Not-Associated   Tx-Power=0 dBm   
    Retry short limit:7   RTS thr:off   Fragment thr:off
    Power Management:off

Então eu corri ifconfig wlp4s0 :

lo      Link encap:Local Loopback  
    inet addr:127.0.0.1  Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING  MTU:65536  Metric:1
    RX packets:7064 errors:0 dropped:0 overruns:0 frame:0
    TX packets:7064 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1 
    RX bytes:524368 (524.3 KB)  TX bytes:524368 (524.3 KB)

wlp4s0    Link encap:Ethernet  HWaddr b8:ee:65:9e:42:99  
    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)

Eu não acho que seja o driver porque eu li esta página que diz o driver que eles oferecem, ath9k faz parte do kernel e esse é o único driver que eles oferecem para o adaptador de rede sem fio Qualcomm Atheros AR9485.

Eu também modifiquei / etc / network / interfaces da seguinte forma:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

auto wlp4s0
iface wlp4s0 inet dhcp
    wpa-driver wext
    wpa-ssid myessid
    wpa-ap-scan 1
    wpa-proto RSN
    wpa-pairwise CCMP
    wpa-key-mgmt WPA-PSK
    wpa-password mypasshere

Eu estou querendo saber se talvez eu devesse ter usado wlan0 em vez de wlp4s0 ? Mas não funcionou de qualquer maneira. Também reiniciei a rede usando sudo /etc/init.d/networking restart , mas ainda não funcionou.

Alguém tem alguma sugestão para mim? Eu prefiro não ter que comprar outro adaptador sem fio.

    
por timgrindall 11.04.2018 / 07:19

0 respostas