用惯了redhat、centos,猛然间用一次ubantu系统还真是窝囊,差点连网络配置都搞不定。
不过其配置起来也很简单:
Ubuntu14.04修改配置,重启网卡没有生效,出现如下问题:
#:service networking restart //重启网络服务
stop: Job failed while stopping
start: Job is already running: networking
tail -f /var/log/upstart/networking.log //查看错误日志
Stopping or restarting the networking job is not supported.
Use ifdown & ifup to reconfigure desired interface.
重启指定网卡
ifdown eth0 && ifup eth0
原文地址:http://xiumin.blog.51cto.com/6205237/1870654