红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Ubuntu

Ubuntu12.04网卡启动报错问题请教

发布时间:2014-07-18 11:41:39来源:红联作者:18972839350
刚配置好IP 重启网卡时提示
running /etc/init.d/networking restart is deprecated because it may not enable again some interfaces
reconfiguring network interfaces
rtnetlink answers:file exists
failed to bring up eth0



求教
文章评论

共有 4 条评论

  1. vip_stone 于 2014-10-16 10:43:01发表:

    同上

  2. 阿飞的小蝴蝶 于 2014-07-20 23:51:36发表:

    同上

  3. huiteng 于 2014-07-19 08:50:20发表:

    路过帮顶

  4. huiyzou 于 2014-07-18 16:12:04发表:

    Debian 在重启网络时候导致错误:
    执行 /etc/init.d/networking restart 或者 service networking restart
    报错信息:Running /etc/init.d/networking restart is deprecated because it may not enable again some interfaces … (warning).

    问题所在:执行此命令是由于网卡(eth0 或者其他)没有启动导致的错误

    解决办法
    1、vim /etc/init.d/network
    内容为

    12345 root@Test:~# cat /etc/init.d/network
    #!/bin/bash
    /etc/init.d/networking stop
    /etc/init.d/networking start
    ifup eth0

    2、修改权限 chmod 755 /etc/init.d/network

    3、重启网络

    1234 root@Test:~# /etc/init.d/network
    Deconfiguring network interfaces...done.
    Configuring network interfaces...done.
    root@Test:~#

    4、ok 问题解决


    原文出处http://www.phpno.com/debian-networking-restart-error.html