查询网卡型号出现:Atheros Communications Device 1083

今天在给一台服务器安装CenOS5.4时出现没有网卡驱动的情况,下面是具体操作:

  1. 在root下执行查看网卡型号

    #lspci | grep Ethernet


    Ethernet controller: Atheros Communications Device 1083

    下面是网上的方法


    #lspci -knn | grep Ethernet


    出现类似这个的话


    Ethernet controller [0200]: Atheros Communications Device [1969:1083] (rev c0)

    那么


    执行:(root权限)代码:


    # modprobe atl1c


    # echo "1969 1083" > /sys/bus/pci/drivers/atl1c/new_id

    这样eth0就可以被识别出来,就可以正常的有线上网了。

但是跟据这个操作发现根本没有atl1c这个模块,可以肯定是没有网卡驱动
查看了一下主板型号,发现是    技嘉GA-G41MT-S2PT
这下就好办了,根据这个主板型号去网卡查找对应的网卡型号是“板载Realtek RTL8111E千兆网卡”
下面是linux型号的网卡驱动下载链接,在附件里也提供了下载

ftp://WebUser:[email protected]/cn/nic/r8168-8.038.00.tar.bz2


然后以root身份安装驱动

tar jxvf r8168-8.038.00.tar.bz2

cd r8168-8.038.00

./autorun.sh


修改/etc/modprobe.conf

alias eth0 r8169 → alias eth0 r8168


你可能感兴趣的:(linux网卡驱动)