过去几个月我在服务器上安装了 Ubuntu 12.04,一切正常。昨晚我做了一个aptitude update && aptitude safe-upgrade
引入所有最新安全更改的操作,现在当我启动服务器时没有创建 lo 设备。
它正确地调出物理以太网接口,我可以在这些接口上ping进出机器,但没有任何东西可以连接到localhost
或上的任何东西127.0.0.1
。
ifconfig
仅列出eth0
和eth1
。
lo
根本没有。
以下是 /etc/network/interfaces 的内容:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
#NetworkManager#iface eth0 inet dhcp
Run Code Online (Sandbox Code Playgroud)
我应该在哪里寻找诊断和修复?
谢谢!