ATHEROS AR8112 LAN Driver

Issues related to configuring your network
Post Reply
grenyer
Posts: 2
Joined: 2010/01/08 12:43:00

ATHEROS AR8112 LAN Driver

Post by grenyer » 2010/09/20 22:06:54

Good afternoon.

I bought an ECS G31T-M7 v1.0 motherboard. It has an Atheros AR8112 10/100 LAN.
I would like to install it.
How can I do ?

Thank you for your help.

User avatar
AlanBartlett
Forum Moderator
Posts: 9345
Joined: 2007/10/22 11:30:09
Location: ~/Earth/UK/England/Suffolk
Contact:

ATHEROS AR8112 LAN Driver

Post by AlanBartlett » 2010/09/20 22:32:28

Welcome to the [i]CentOS[/i] fora.

The recommended reading for all new members is the [url=https://www.centos.org/modules/newbb/viewforum.php?forum=47]FAQ & Readme First[/url].

With regard to the relevant driver for the [i]Atheros[/i] device, will will need to known the [i]Vendor:Device ID Pairing[/i] (a.k.a. the [i]fingerprint[/i]) for the NIC. You may find it helpful to read [url=http://elrepo.org/tiki/FAQ]FAQ #4[/url] at the [url=http://elrepo.org]ELRepo[/url] website.

In summary, please execute the following on the system in question and post its output --

[code]
[b]for BUSID in $(/sbin/lspci | awk '{ IGNORECASE=1 } /net/ { print $1 }'); do /sbin/lspci -s $BUSID -m; /sbin/lspci -s $BUSID -n; done[/b]
[/code]
You may find it easier to use copy / paste, in conjunction with the classic [url=http://en.wikipedia.org/wiki/Sneakernet]sneakernet[/url], to avoid any typos and transcription errors.

grenyer
Posts: 2
Joined: 2010/01/08 12:43:00

Re: ATHEROS AR8112 LAN Driver

Post by grenyer » 2010/09/21 02:28:30

[code]01:00.0 "Ethernet controller" "Atheros Communications" "L2 100 Mbit Ethernet Adapter" -ra0 "Elitegroup Computer Systems" "Unknown device 2048"
01:00.0 0200: 1969:2048 (rev a0)[/code]

[Moderator edited to correct the formatting that had been mangled by use of the widget.]

User avatar
AlanBartlett
Forum Moderator
Posts: 9345
Joined: 2007/10/22 11:30:09
Location: ~/Earth/UK/England/Suffolk
Contact:

Re: ATHEROS AR8112 LAN Driver

Post by AlanBartlett » 2010/09/21 16:49:12

Thank you for that information.

Your next task is to become familiar with the [url=http://elrepo.org]ELRepo Project[/url]. ;-)

When I search the [url=http://elrepo.org/tiki/DeviceIDs]Device IDs page[/url] for that device [i]fingerprint[/i], ([b]1969:2048[/b]), I see --

[code]
[b]pci 1969:2048 kmod-atl2[/b]
[/code]
Hence we now know that your NIC is supported by the kernel independent, kABI tracking [url=http://elrepo.org/tiki/kmod-atl2]kmod-atl2[/url] package. Ensure that you install the correct package for your system architecture and kernel type.

If you are unsure which one to choose, please post the output returned by --

[code]
[b]uname -rmi[/b]
[/code]

Post Reply