解决 Error:No suitable device found: no device found for connection "System eth0"

一.背景

我们安装好了一个虚拟机,我想做分布式集群,想模拟几台服务器,这时就想直接复制已经有的安装好的虚拟机,这样比较省事,不要在重复的安装虚拟机并配置JAVA环境,省掉做同样的事情,这时直接复制,这样之前配置的JAVA环境都有了。

二.问题

这时我复制好的虚拟机,启动登陆进去(用户名和密码跟之前那台是一样的),修改好IPADDR,然后网卡重启出现问题?

#service network restart

出现问题:Error:No suitable device found: no device found for connection "System eth0"  如图所示:

#ifup eth0

出现: eth0: unknown interface: No such device 这样的问题,网卡都启动不了,出现问题.

 三.解决问题

第一步:我们在界面点击Network Adapter Remove删除网卡,如图所示:

第二步:然后添加一个新的网卡,就是点击add,这时跟前面一台的MAC Address 就不一样,如图所示:

第三步: 重新启动虚拟机,然后进入到/etc/udev/rules.d/目录

#cat  70-persistent-net.rules

里面的信息跟我们Network Adapter的MAC Address地址一样,如图所示:

第四步:进入/etc/sysconfig/network-scripts/目录

#vi ifcfg-eth0

把HWADDR修改成Network Adapter的MAC Address地址一样,如图所示:

第五步:重启网卡,这时就能正常启动,如图所示:

时间: 2024-10-06 00:13:20

解决 Error:No suitable device found: no device found for connection "System eth0"的相关文章

解决Error:No suitable device found: no device found for connection "Syst

一.背景 之前已经安装好虚拟机,想修改虚拟机linux的网卡从仅主机模式变为NAT模式,方便笔记本没有使用网线的时候也能连接虚拟机内的linux. 二.问题 修改完网卡的配置文件后重启网卡服务  service network restart 出现问题如下: error:No suitable device found: no device found for connection "System eth0" 启动网卡eth0也报错相同 三.解决问题 检查虚拟机配置的网卡上MAC地址与

如何解决虚拟机克隆导致"Bringing up interface eth0: Error: No suitable device found: no device found for connection 'System eth0'."

在VMware的虚拟机中克隆CentOS,在重启网卡的时候报错: Bringing up interface eth0:  Error: No suitable device found: no device found for connection 'System eth0'. Shutting down loopback interface: [ OK ] Bringing up loopback interface: [ OK ] Bringing up interface eth0: E

Error:No suitable device found: no device found for connection "System eth0"

故障说明: 在克隆几台虚拟机,发现启动后不能配置IP地址等信息,使用linux命令: “ifup eth0”也不能激活网卡, 而在使用"service network restart",出现错误: Error:No suitable device found: no device found for connection "System eth0" 解决方法: 基于这个错误,在网上查找了一下,发现有很多朋友都遇到过,这次错误使用第2种方式解决. 1.删除/etc/u

克隆虚拟机重启服务时 Error:No suitable device found: no device found for connection "System eth0"

故障说明: 在克隆几台虚拟机,发现启动后不能配置IP地址等信息,使用linux命令: “ifup eth0”也不能激活网卡, 而在使用"service network restart",出现错误: Error:No suitable device found: no device found for connection "System eth0" 解决方法: 基于这个错误,在网上查找了一下,发现有很多朋友都遇到过,这次错误使用第2种方式解决. 1.删除/etc/u

vmware复制虚拟机出现Error:No suitable device found:no device found for connection 'System eth0'

vmware复制虚拟机出现Error:No suitable device found:no device found for connection 'System eth0' 废话不多说,直接给出解决办法: 1.查看硬件地址 [[email protected] ~]# ifconfig eth2      Link encap:Ethernet  HWaddr 00:0C:29:89:18:58            inet addr:192.168.11.200  Bcast:192.1

no device found for connection ‘ System eth0′

解决办法: 1.删除/etc/udev/rules.d/70-persistent-net.rules文件,重启系统. 2.如果上面的不起作用,那么去看ifcfg-eth0文件中的HWADDR是否正确,改成正确的HWADDR.

Bringing up interface eth0: Error: No suitable

Bringing up interface eth0:  Error: No suitable device found: no device found for connection 'System eth0'. 克隆虚拟机网卡启动中遇到的问题 1.重启网卡之后遇到如下错误 Bringing up interface eth0:  Error: No suitable device found: no device found for connection 'System eth0'. 2.i

Error:No suitable device found: no device found for connection “System eth1″

centos 6.8 背景:在vcenter上克隆完毕一台虚拟机 要在新克隆的虚拟机上配置静态ip 配置静态ip完毕,运行service network restart 报错 Error:No suitable device found: no device found for connection "System eth1″ 问题不在解释,直接上解决办法 ifconfig 显示 网卡是 eth1 但是在 /etc/sysconfig/network-scripts/ 下 没有eth1文件,只有

caffe运行错误: im2col.cu:61] Check failed: error == cudaSuccess (8 vs. 0) invalid device function

错误: im2col.cu:61] Check failed: error == cudaSuccess (8 vs. 0)  invalid device function 原因:由于Makefile.config里面只对cuda8.0一下的架构编译cuda程序,所以采用cuda8.0后cuda程序没有被编译 解决:修改Makefile.config中的 CUDA_ARCH 添加 -gencode arch=compute_61,code=sm_61 计算能力可以参考下面链接添加合适的架构参数