Ubuntu 18.04 Server版,启动如果不插网线会有一个很长时间的等待,大概3分钟a starting job is Waiting for Network to be configured
1、cd 到 /etc/systemd/system/network-online.target.wants文件夹下修改systemd-networkd-wait-online.service文件sudo vim在内容[Service]下找到行ExecStart=/lib/systemd/systemd-networkd-wait-online在后面添加 -s -q --timeout=5并保存
2、在同一个文件夹下修改 NetworkManager-wait-online.service 文件 sudo vim 在内容[Service]下找到行ExecStart=/usr/bin/nm-online -s -q --timeout=30 把30改为5
reboot再也不用再等待网络超时了
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`
还有个方法,我没试过如下:
$ sudo systemctl stop systemd-networkd-wait-online.service
$ sudo systemctl disable systemd-networkd-wait-online.service