克隆过程就略过了
配置interfaces
[email protected]:~# vim /etc/network/interfaces # interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback auto ens33 iface ens33 inet static address 192.168.244.11 netmask 255.255.255.0 gateway 192.168.244.2
保存之后重启网络服务会抛错
[email protected]:~# service networking restart Job for networking.service failed because the control process exited with error code. See "systemctl status networking.service" and "journalctl -xe" for details.
折腾了一会,从热心的网友的经验中找到了解决办法:
[email protected]:~# vim /etc/NetworkManager/NetworkManager.conf [main] plugins=ifupdown,keyfile [ifupdown] managed=false #手动更改过interfaces配置文件后,这里会变成false,将其改为true,然后使用service network-manager restart重启后,使用ifconfig可以看到手动设置的IP,且网络恢复正常(这种方法针对Ubuntu Desktop,server中暂时不清楚是否可行?) [device] wifi.scan-rand-mac-address=no
这里虽然恢复正常了,但是不明白的是,在centOS和RHEL系统中,一般这个Network-Manager在做实验的时候是关闭的,也没有影响到网络,换到Ubuntu系统中就要启动它,有点不明白。
参考:https://blog.csdn.net/qq_34706955/article/details/78051075?locationNum=10&fps=1
原文地址:https://www.cnblogs.com/zd520pyx1314/p/9967035.html
时间: 2024-10-06 11:51:19