刚配置好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 条评论
vip_stone 于 2014-10-16 10:43:01发表:
同上
阿飞的小蝴蝶 于 2014-07-20 23:51:36发表:
同上
huiteng 于 2014-07-19 08:50:20发表:
路过帮顶
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).
vip_stone 于 2014-10-16 10:43:01发表:
同上
阿飞的小蝴蝶 于 2014-07-20 23:51:36发表:
同上
huiteng 于 2014-07-19 08:50:20发表:
路过帮顶
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