Ubuntu – Ethernet conection not working Atheros AR8152 OS 12.04

12.04atherosethernetnetworking

I have instaled Ubuntu 12.04 but my network conection doesn't work and i know it's becouse of the drivers

I've run

$ lspci | grep Ethernet

and this is the result

02:00.0 Ethernet controller: Atheros Communications AR8152 v2.0 Fast Ethernet (rev c1)

and even ifconfig -a and lspci -v and posted it in paste bin

ifconfig -a and lspci -v

I try to fix it by dowloading this drivers

Drivers Website

and instaling them with this commands

$ tar -xjvf compat-wireless-2.6.tar.bz2
$ cd compat-wireless*
$ scripts/driver-select atl1c
$ make
$ sudo make install
$ sudo modprobe atl1c

but it fails in the last one becouse it cant find atl1c

with compat-wireless-2012-04-26-pc.tar.bz2 it complete the modprobe but the conection dont works

Please, I need a solution. I dont know what else to do for making this work

Best Answer

I had exactly this problem, no networks detected at all with my Asus eee pc. After a very frustrating day trying everything I did the below and my netbook immediately found my wireless network:

sudo apt-get update
sudo apt-get install build-essential
cd ~/Downloads # [or wherever you download it to]
tar-xjvf compat-wireless-2012-04-26.tar.bz2
cd compat-wireless*
scripts/driver-select ath9k
make
sudo make install

the atl1c did not work for me, ath9k did.

Many thanks