1.ubuntu有线无法上网,使用ifconfig没看到有线网卡,证明没有驱动
2.使用lspci查看所有驱动,找到Ethernet controller: 那个,为以太网驱动,到官网查找、
我的为Ethernet controller: Intel Corporation Device 15b7 (rev 31)
https://downloadcenter.intel.com/download/15817
3. 下载完毕后:
tar-zxvfe1000e-3.3.4.tar.gz #解压驱动安装包
cde1000e-3.3.4/src #转入驱动目录
makeinstall #编译安装
modprobee1000e #加入网卡
安装完毕后再在RHEL7右上角网络管理出打开有线连接。网络连接即成功!
进行以上步骤后,还没成功,在尝试:
4.将编译好的驱动(e1000e.ko)安装到/lib/modules/3.16.0-30-generic/updates/drivers/net/ethernet/intel/ethernet/intel/e1000e/e1000e.ko
sudomodprobe e1000e
5 》如果没有检测到网卡,尝试使用如下命令插入驱动模块到内核:
insmod /lib/modules/3.16.0-30-generic/updates/drivers/net/ethernet/intel/ethernet/intel/e1000e/e1000e.ko,然后重启ubuntu,就可以上网了。(卸载用rmmod 命令)
以上步骤仍没有成功
尝试:
6.另外尝试如下之一能否工作:
sudo ethtool -s eth0 autoneg off speed 100 duplex full
sudo ethtool -s eth0 speed 10 duplex half
7. 执行ifconfig命令能看到eth0网卡,这说明你的无线网卡能被系统识别,并且系统自动加载了相应的网卡驱动。
按理说,如果你的网卡工作正常的话,ubuntu应该能够自动为它获取一个IP地址,但显然你的有线网卡没有获得IP地址。但是windows系统,网卡工作一切正常。也即是说,网卡在ubuntu14.4系统里还是没能正常工作。用下面的命令手动获取一下IP地址
sudo dhclient eth0
8. 另外可以参考:http://blog.csdn.net/yangheng816/article/details/73743859
9. 检查,正常情况下使用ifconfig之后会显示eth0,inet,inet6; 但是没有显示inet,包括“inet/地址/广播/掩码/ ”?(http://blog.163.com/zhu329599788@126/blog/static/66693350201612972242806/)
1.先用sudo dhclient eth0更新IP地址
2.然后运行sudo ifconfig eth0
3.reboot
本人通过此步骤解决了问题。
若还是没有解决,可以尝试设置静态IP,网关和掩码
10. 按照windows系统的IP和DNS设置Ubuntu下的IP和DNS
具体步骤参见:http://jingyan.baidu.com/article/9c69d48ffd952713c9024e83.html
11.若仍没有效果,使用:https://zhidao.baidu.com/question/47848274.html
方法配置。
12. 仍然失败的话,尝试http://www.cnblogs.com/likwo/archive/2012/05/14/2499880.html
注意重启电脑试试
13.仍然无法上网的话,使用如下方法:设置永久dns
通过修改:
sudovi/etc/resolvconf/resolv.conf.d/base(这个文件默认是空的)
在里面插入:
nameserver8.8.8.8
nameserver8.8.4.4
如果有多个DNS就一行一个
sudoresolvconf-u
再看/etc/resolv.conf,最下面就多了2行:
cat/etc/resolv.conf
#Dynamicresolv.conf(5)fileforglibcresolver(3)generatedbyresolvconf(8)
#DONOTEDITTHISFILEBYHAND--YOURCHANGESWILLBEOVERWRITTEN
nameserver8.8.8.8
nameserver8.8.4.4
可以看到我们的设置已经加上了,然后再ping一个域名,当时就可以解析了,无需重启。
按照上述过程配置完后,显示设备未托管,如何解决?网络上说是由于两种方案冲突导致:
http://blog.csdn.net/mungo/article/details/52683880
使用上述方法后,出现有线已连接但无法上网
ubuntu出现有线已连接却无法上网
sudo sysctl net.ipv4.conf.default.rp_filter=0 sudo sysctl net.ipv4.conf.all.rp_filter=sudo sysctl net.ipv4.ip_forward=1 sudo sysctl net.ipv6.conf.all.forwarding=1
或者直接追加到/etc/sysctl.conf
如果遇到“设备未托管”,一般是台式机默认移动ip后禁用网络。
那么修改/etc/NetworkManager/NetworkManager.conf,设置managed=true,reboot
有时候遇到即使改了上面四条仍旧无法连接网络,那么就是由于managed=true引起的,再改成false即可连接网页。
原文链接:https://www.f2er.com/ubuntu/352203.html