Placa Ethernet Atheros AR8161 não está funcionando no 12.10 em um ASUS N56VM

1

Instalei o Ubuntu 12.10 (64bits) (kernel 3.5.0-18) em um ASUS N56VM e a placa ethernet não está funcionando. Placa sem fio funciona bem. O cartão é Atheros Communications Inc. AR8161 Ethernet Gigabit [1969: 1091] (rev 10).

Eu li que há uma solução alternativa para 12.04, mas não para 12.10.

Informações adicionais:

$ lspci -nnk | grep -i ethernet
04:00.0 Ethernet controller [0200]: Atheros Communications Inc. AR8161 Gigabit Ethernet [1969:1091] (rev 10)

$ ifconfig eth0
eth0: error fetching interface information: Device not found

$ ifconfig -a
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:16436  Metric:1
          RX packets:1138 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1138 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:115837 (115.8 KB)  TX bytes:115837 (115.8 KB)

wlan0     Link encap:Ethernet  HWaddr e0:b9:a5:f9:ba:02  
          inet addr:192.168.0.102  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::e2b9:a5ff:fef9:ba02/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:8911 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7175 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:7837367 (7.8 MB)  TX bytes:1063488 (1.0 MB)
    
por Lars 06.01.2013 / 17:46

1 resposta

2

Então, a única maneira que eu consegui fazer isso foi compilar o driver alx.

eu. Vá e pegue o tarball da The Linux Foundation:   link e salve-o em algum lugar (digamos que você salvou em Desktop/alx )  II. Instale alguns pacotes necessários para compilar:

  

sudo apt-get instala cabeçalhos de linux-genéricos linux-general-build-essential- uname -r

III. Descompacte o tarball e compile-o (Isto é, desde que o arquivo que você baixou seja chamado de 'compat-wireless-3.6.8-1-snpc.tar.bz2'):

  

cd / home / VOCÊ / Desktop / alx

     

tar -xjf compat-wireless-3.6.8-1-snpc.tar.bz2

     

sudo su

     

cd compat-wireless-3.6.8-1-snpc

     

./ scripts / driver-select alx

     

faça

     

faça a instalação

     

modprobe alx

IV. Hooray você deve ter Ethernet agora! :)  Tente: sudo ifconfig -a - você deve ver uma inteface eth0

    
por Borislav Sabev 14.01.2013 / 07:28