我将网络/etc/network/interfaces
设置更改为静态 IP,但之后重新启动时它并未完成启动。
它上升到环形交叉路口
*Starting AppArmor profiles [OK]
然后停止并且不再继续。它还会:
*Configuring virtual network devices [fail]
我可以访问 GRUB 启动菜单,并从那里访问 ROOT 命令 shell。
文中/etc/network/interfaces
写道:
#Interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auth eth0
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.135
dns nameserver 192.168.1.135 4.4.4.4
我提前感谢大家
答案1
我认为您的接口文件格式不正确。请将其修改为:
#Interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.101
netmask 255.255.255.0
gateway 192.168.1.135
dns nameserver 192.168.1.135 4.4.4.4
然后让系统重新读取并使用更改:
sudo ifdown eth0 && sudo ifup -v eth0
能连上吗?
ping -c3 www.google.com