Ubuntu 12.04LTS 不到eth0网卡
我的机器是DELL 14R INSPRION 7420 笔记本。试了好多方法都不行,比如这个教程:
1. sudoifconfig -a //查看所有网卡现状,看eth0是否存在,在结果列表应该不到eth0网卡的,除了lo之外,正常应该还有一个ethX
2. vim /etc/network/interfaces //修改内容如下
autoethX
ifaceethXinetdhcp
//或  www.2cto 
autoethX
ifaceethXinetstaticubuntu vim命令
address192.168.0.101
netmask255.255.255.0
gateway192.168.0.1
3. sudo /etc/init.d/networking restart  //重新启动网卡,问题可解决。
 
因为我的网卡根本没有驱动进来,所以这些都是胡闹。
 
正确做法:
先查看一下网卡信息:
wy@wy-Inspiron-7420:~$ lspci -k|grep -i -A2 net
02:00.0 Network controller: Intel Corporation Centrino Wireless-N 2230 (rev c4)
    Subsystem: Intel Corporation Centrino Wireless-N 2230 BGN
    Kernel driver in use: iwlwifi
--
03:00.0Ethernet controller: Atheros Communications Inc. AR8161 Gigabit Ethernet (rev 10)
    Subsystem: Dell Device 055f
    Kernel driver in use: alx
从上可见我的有线网卡是AR8161 Gigabit Ethernet。然后去这个型号的网卡驱动并安装(如果是其它网卡的,在百度谷歌里去搜它的驱动)。
sudo -i    #进root权限
wget http:///download/compat-wireless-2.6/compat-wireless-2012-03-12-p.tar.bz2
tarxvf compat-wireless-2012-03-12-p.tar.bz2
cd compat-wireless-2012-03-12-p
./scripts/driver-selectalx
make
make install
./scripts/alx-enable atl1c
./scripts/alx-enable alx
modprobealx
ok,eth0出来啦。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。