启动时“等待网络配置”

启动时“等待网络配置”

当我启动时,我收到错误消息waiting for network configuration,然后waiting an additional 60 seconds for network configuration

/etc/network/interfaces在出现上述消息之前已经编辑过文件,以便使用以太网线在朋友的笔记本电脑上上网;然后,恢复文件后,我仍然收到相同的消息。我在互联网上搜索过,但没有找到任何有用的东西。

其内容/etc/network/interfaces为:

auto lo
iface lo inet loopback

怎么了?

答案1

您缺少 eth0 部分,请尝试添加下列

auto eth0
iface eth0 inet dhcp

然后重新启动。

答案2

你的配置看起来不错。检查编辑后是否保存了文件,如果没有保存

sudo nano /etc/network/interfaces如果您使用的是纳米

sudo vim /etc/network/interfaces如果您使用 vim,请删除其中的所有内容并替换为以下内容 auto lo iface lo inet loopback

现在重新启动,你应该没问题了:)

相关内容