Ubuntu报“fail to bring up eth0” 原因:
eth0网卡不存在
办法:
1. sudo ifconfig -a //查看所有网卡现状,看eth0是否存在,在结果列表应该找不到eth0网卡的,除了lo之外,正常应该还有一个ethX
2. vim /etc/network/interfaces //修改内容如下
auto ethX
iface ethX inet dhcp
//或
auto ethX
iface ethX inet static
address 192.168.0.101
netmask 255.255.255.0
gateway 192.168.0.1
3. sudo /etc/init.d/networking restart //重新启动网卡,问题可解决。