/sbin/ifup: configuration for eth0 not found解决

/sbin/ifup: configuration for eth0 not found.
Usage: ifup <device name>

那么应该是在/etc/sysconfig/network-scripts/这个文件夹下没有ifcfg-eth0文件,若在/etc
/sysconfig/networking/devices目录下存在一个ifcfg-eth0文件,则只要把这个文件拷到/etc
/sysconfig/network-scripts/这个文件夹下就行了,再点激活eth0网卡时就ok了!

经查询及参考/etc/sysconfig/network-scripts/ifup-eth文件,

if is_bonding_device ${DEVICE} ; then

for device in `LANG=C grep -l "^[[:space:]]*MASTER=${DEVICE}" /etc/sysconfig/network-scripts/ifcfg-*` ; do

is_ignored_file "$device" && continue

/sbin/ifup ${device##*/}

done

fi

时间: 2024-10-28 23:14:16

/sbin/ifup: configuration for eth0 not found解决的相关文章

CentOS下找不到eth0设备的解决方法

问题描述: ifconfig命令无法找到eth0设备,且/etc/sysconfig/network-scripts/中只有ifcfg-lo文件,而没有ifcfg-eth0. 临时解决方法一: 使用命令ifconfig eth0 192.168.1.x可以正常设置eth0的IP,该方法仅为临时处理办法,系统重启后即失效了. 永久解决方法二: 1.在/etc/sysconfig/network-scripts/目录下新建ifcfg-eth0文件: 2.正确设置ifcfg-eth0的DEVICE.B

VirtualBox复制虚拟机后丢失eth0网卡的解决办法

在VirtualBox中复制linux虚拟机后,启动后发现没有网卡的启动(即输入/sbin/ifconfig后没有eth0),重启network服务,提示的错误为: Device eth0 does not seem to be present, delaying initialization 修改办法: 修改70-persistent-net.rules文件,注释掉原来的eth0那一段,将新增的eth1改为eth0(或者直接删掉这个文件也可以,重启Linux后会再次生成这个文件)复制MAC地址

ubuntu eclipse 建立server 提示coud not load the tomcat server configuration at /opt/apache ...的解决方法

ubuntu eclipse 建立server 提示coud not load the tomcat server configuration at /opt/apache ...的解决方法 & 及new server 时tomcat 无法finish (灰掉不可用)的解决方法. 运行命令 chmod -R 777 /opt/apache-tomcat-*

vmware克隆centos6.5 导致 system eth0 不可用解决办法

vim /etc/udev/rules.d/70-persistent-net.rules 可以看到eth0 eth1两个. 注释 NAME="eth0" # PCI device 0x8086:0x100f (e1000) SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:0c:29:48:85:9c", ATTR{typ

Error: Cannot open main configuration file &#39;//start&#39; for reading! 解决办法

当执行service nagios start启动nagios时,报错:Error: Cannot open main configuration file '//start' for reading! 此问题是修改了nagios安装源文件导致的报错.如报此问题,请执行如下命令,便可解决: /usr/bin/install -c -m 755 -d -o root -g root /etc/rc.d/init.d /usr/bin/install -c -m 755 -o root -g roo

Struts2中的Unable to load configuration错误的分析与解决方法

当我们遇到 Unable to load configuration. 这样的错误时,可以根据具体的错误提示找出错误的原因. Unable to load configuration. - interceptor-ref - file:/D:/Java/apache-tomcat-6.0.32/webapps/examquestions/WEB-INF/classes/struts.xml:28:49 at com.opensymphony.xwork2.config.Configuration

inux下输入ifconfig命令,没有eth0,怎么解决

用ifconfig命令,只有lo,没有eth0的解决方案 问题描述:视频中输入ifconfig命令,显示eth0和lo,但是自己在虚拟机中并非得到这样的结果,而是只有lo,即网卡未启动,也没有ip,无法用Xshell远程连接. 解决方案: 1. 进入/etc/sysconfig/network-scripts 目录,发现有ifcfg-eth0,即网卡(驱动)存在但未启用. 2. 输入ifconfig -a命令,可显示eth0和lo. 3. 输入ifconfig eth0 up,启用网卡.此时用i

转:安装MySQL遇到MySQL Server Instance Configuration Wizard未响应的解决办法

问题:安装了MySQL之后进入配置界面的时候,总会显示“MySQL Server Instance Configuration Wizard未响应”,一直卡死. 解决办法:Win7系统中,以管理员的权限登录系统,将C盘的ProgramData中的MySQL文件夹删掉即可(如果没有该文件夹,可能是因为隐藏了) 转自:http://blog.csdn.net/liuxiyangyang/article/details/8810094 若配置方案选择“Detailed Configuration”的配

Determining IP information for eth0...failed 错误解决

问题描述:虚拟机使用wget命令上网,执行service network restart后出现如下错误Determining IP information for eth0...failed解决办法:step1:修改/etc/sysconfig/network-scripts/ifcfg-eth0 BOOTROTO=dhcpstep2:向如下三个文件中添加如下代码 check_link_dowm() { return 1; } (1)/etc/sysconfig/network-scripts/